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
|
.sass-cache
|
||||||
_asset_bundler_cache
|
_asset_bundler_cache
|
||||||
_site
|
_site
|
||||||
|
|
||||||
|
# torrent stuff
|
||||||
|
torrents
|
3
rss.py
3
rss.py
|
@ -30,7 +30,8 @@ with open(rss, "w") as xml:
|
||||||
infohash = hashlib.sha1(bencodepy.encode(tor[b"info"])).hexdigest().upper()
|
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"]}
|
magp = {"xt": "urn:btih:{0}".format(infohash), "dn": tor[b"info"][b"name"], "xl": tor[b"info"][b"length"]}
|
||||||
magstr = urllib.parse.urlencode(magp)
|
magstr = urllib.parse.urlencode(magp)
|
||||||
for anncl in tor[b"announce-list"]:
|
if b'announce-list' in tor:
|
||||||
|
for anncl in tor[b'announce-list']:
|
||||||
if isinstance(anncl, list):
|
if isinstance(anncl, list):
|
||||||
for annc in anncl:
|
for annc in anncl:
|
||||||
trackers.append(annc.decode("utf-8"))
|
trackers.append(annc.decode("utf-8"))
|
||||||
|
|
Loading…
Reference in a new issue