/shiza-utils

download torrents from shiza-project.com

Primary LanguagePythonMIT LicenseMIT

simple Python package to download torrent files from https://shiza-project.com/

import shiza

ts = shiza.download_torrents('https://shiza-project.com/releases/fairy-tail-tv-1/')

for name, data in ts:
    with open(name, "wb") as f:
        f.write(data)