├── .gitignore ├── LICENSE.txt ├── README.txt ├── bencode ├── BTL.py └── __init__.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittorrent/bencode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittorrent/bencode/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittorrent/bencode/HEAD/README.txt -------------------------------------------------------------------------------- /bencode/BTL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittorrent/bencode/HEAD/bencode/BTL.py -------------------------------------------------------------------------------- /bencode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittorrent/bencode/HEAD/bencode/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bittorrent/bencode/HEAD/setup.py --------------------------------------------------------------------------------