tl;dr: A Python module for the BitTorrent Sync API.
This module enables the use of the BitTorrent Sync API through Python. Long term objective it to provide different levels of wrapping to the API. Currently the module only behaves as a thin library with added nicities (see documentation)
BitTorrent Sync by BitTorrent, Inc is a proprietary peer-to-peer file synchronization tool available for Windows, Mac, Linux, Android, iOS and BSD. It can sync files between devices on a local network, or between remote devices over the Internet via secure, distributed P2P technology. [1]
Below is the list of software which this
- BitTorrent sync API key - Proprietary TOS
- Python (2 or 3) - GPL compatible
- Python request module - Apache 2.0
Using the python package manager is the easiest way to get the module going:
> pip install pybtsync
> easy_install pybtsync
To get the latest code you can clone this Github repository and run the setup script manually.
> git clone https://github.com/tiagomacarios/pybtsync.git > cd pybtsync > python setup.py
[1] | http://en.wikipedia.org/wiki/BitTorrent_Sync |