Update torrent list

Removed unused torrents
Fixed small bug in rss.py
This commit is contained in:
lifehackerhansol 2022-01-19 23:07:26 -08:00
parent 926880a84f
commit 15896080db
3 changed files with 2933 additions and 7603 deletions

3
.gitignore vendored
View File

@ -27,3 +27,6 @@ codekit-config.json
.sass-cache
_asset_bundler_cache
_site
# torrent stuff
torrents

13
rss.py
View File

@ -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"]

10520
rss.xml

File diff suppressed because it is too large Load Diff