Update torrent list
Removed unused torrents Fixed small bug in rss.py
This commit is contained in:
parent
926880a84f
commit
15896080db
3 changed files with 2933 additions and 7603 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -27,3 +27,6 @@ codekit-config.json
|
|||
.sass-cache
|
||||
_asset_bundler_cache
|
||||
_site
|
||||
|
||||
# torrent stuff
|
||||
torrents
|
13
rss.py
13
rss.py
|
@ -30,12 +30,13 @@ with open(rss, "w") as xml:
|
|||
infohash = hashlib.sha1(bencodepy.encode(tor[b"info"])).hexdigest().upper()
|
||||
magp = {"xt": "urn:btih:{0}".format(infohash), "dn": tor[b"info"][b"name"], "xl": tor[b"info"][b"length"]}
|
||||
magstr = urllib.parse.urlencode(magp)
|
||||
for anncl in tor[b"announce-list"]:
|
||||
if isinstance(anncl, list):
|
||||
for annc in anncl:
|
||||
trackers.append(annc.decode("utf-8"))
|
||||
else:
|
||||
trackers.append(anncl.decode("utf-8"))
|
||||
if b'announce-list' in tor:
|
||||
for anncl in tor[b'announce-list']:
|
||||
if isinstance(anncl, list):
|
||||
for annc in anncl:
|
||||
trackers.append(annc.decode("utf-8"))
|
||||
else:
|
||||
trackers.append(anncl.decode("utf-8"))
|
||||
length = tor[b"info"][b"length"]
|
||||
name = tor[b"info"][b"name"].decode("utf-8")
|
||||
ts = tor[b"creation date"]
|
||||
|
|
Loading…
Reference in a new issue