torf
torf copied to clipboard
Python module to create, parse and edit torrent files and magnet links
I recently encountered this [torrent](https://github.com/rndusr/torf/files/14894289/torrent.gz) file in the wild and it has one invalid tracker url out of many. Trying to read it raises a metainfo error ```py Traceback (most...
I find the following… odd (torf 4.2.7): ```python import os import torf with open("test.txt", "w") as file: file.write("test") torrent = torf.Torrent(path="test.txt") torrent.generate() os.unlink("test.txt") print(torrent.infohash) ``` ``` Traceback (most recent call...