├── .gitignore ├── README.md ├── bittorrent.py ├── peers.py ├── pieces.py ├── reactor.py ├── requirements.txt ├── run.py ├── scrape.py └── tests └── pieces_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/README.md -------------------------------------------------------------------------------- /bittorrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/bittorrent.py -------------------------------------------------------------------------------- /peers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/peers.py -------------------------------------------------------------------------------- /pieces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/pieces.py -------------------------------------------------------------------------------- /reactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/reactor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bencode==1.0 2 | bitstring==3.1.2 3 | requests==2.2.1 4 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/run.py -------------------------------------------------------------------------------- /scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/scrape.py -------------------------------------------------------------------------------- /tests/pieces_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lita/bittorrent/HEAD/tests/pieces_test.py --------------------------------------------------------------------------------