Skip to content
This repository has been archived by the owner on Jan 13, 2018. It is now read-only.

Latest commit

 

History

History
17 lines (14 loc) · 561 Bytes

README.markdown

File metadata and controls

17 lines (14 loc) · 561 Bytes

python-bittorent

python-bittorent is a BitTorrent library, written entirely in Python. It aims to be simple, clean, and efficient.

Dependencies: (obviously) python, nose for testing. Also, as a final note, python-bittorent is very much alpha software right now.

bittorrent.py

This module aims to make it incredibly simple to incorporate the BitTorrent protocol into your program.

To run a Bittorrent tracker from within your application: from bittorrent import Tracker tracker = Tracker() tracker.run() and you're done!