├── .gitignore ├── LICENSE ├── README.md ├── magnet_dht ├── __init__.py ├── crawler.py ├── database.py ├── magnet_to_torrent_aria2c.py ├── parse_torrent.py └── utils.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/README.md -------------------------------------------------------------------------------- /magnet_dht/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /magnet_dht/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/magnet_dht/crawler.py -------------------------------------------------------------------------------- /magnet_dht/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/magnet_dht/database.py -------------------------------------------------------------------------------- /magnet_dht/magnet_to_torrent_aria2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/magnet_dht/magnet_to_torrent_aria2c.py -------------------------------------------------------------------------------- /magnet_dht/parse_torrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/magnet_dht/parse_torrent.py -------------------------------------------------------------------------------- /magnet_dht/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/magnet_dht/utils.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjiandongx/magnet-dht/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bencoder.pyx 2 | redis 3 | --------------------------------------------------------------------------------