from BeautifulSoup import BeautifulSoup
import urllib2
import re
user = raw_input('begin here!: ')
base = ("http://1337x.org/search/")
print (base + user)
add_on = "/0/"
total_link = (base + user + add_on)
html_data = urllib2.urlopen(total_link, 'r').read()
soup = BeautifulSoup(html_data)
announce = soup.find('a', attrs={'href': re.compile("^/announcelist")})
print announce
トレントリンク、できれば最初のスポンサーなしリンクを取得しようとしています。ページからリンクを印刷してもらいます。私はこのコーディングにかなり慣れていないので、あなたが与えることができる限り多くの詳細が完璧になるでしょう!助けてくれてありがとう!