2007-02-20 05:32:13 +01:00
=========================
libtorrent python binding
=========================
2014-10-14 04:06:20 +02:00
:Author: Arvid Norberg, arvid@libtorrent.org
2007-02-20 05:32:13 +01:00
.. contents :: Table of contents
:depth: 2
:backlinks: none
building
========
Building the libtorrent python bindings will produce a shared library (DLL)
which is a python module that can be imported in a python program.
2008-10-17 09:42:17 +02:00
building using setup.py
-----------------------
2008-12-02 09:39:44 +01:00
There is a `` setup.py `` shipped with libtorrent that can be used on windows.
On windows the setup.py will invoke `` bjam `` and assume that you have boost
sources at `` $BOOST_PATH `` . The resulting executable is self-contained, it does
not depend any boost or libtorrent dlls.
2008-10-17 09:42:17 +02:00
2008-12-02 09:39:44 +01:00
On other systems, the setup.py is generated by running
`` ./configure --enable-python-binding `` .
2008-10-17 09:42:17 +02:00
To build the Python bindings do:
1. Run::
python setup.py build
2. As root, run::
python setup.py install
building using boost build
--------------------------
To set up your build environment, you need to add some settings to your
2007-02-20 05:32:13 +01:00
`` $BOOST_BUILD_PATH/user-config.jam `` .
Make sure your user config contains the following line::
using python : 2.3 ;
Set the version to the version of python you have installed or want to use. If
you've installed python in a non-standard location, you have to add the prefix
path used when you installed python as a second option. Like this::
2011-11-13 07:22:08 +01:00
using python : 2.6 : /usr/bin/python2.6 : /usr/include/python2.6 : /usr/lib/python2.6 ;
2007-02-20 05:32:13 +01:00
The bindings require *at least* python version 2.2.
For more information on how to install and set up boost-build, see the
2008-10-17 19:31:20 +02:00
`building libtorrent`__ section.
2007-02-20 05:32:13 +01:00
2008-10-17 19:31:20 +02:00
.. __: building.html#step-2-setup-bbv2
2007-02-20 05:32:13 +01:00
Once you have boost-build set up, you cd to the `` bindings/python ``
directory and invoke `` bjam `` with the apropriate settings. For the available
build variants, see `libtorrent build options`_ .
.. _`libtorrent build options`: building.html#step-3-building-libtorrent
For example::
2015-08-09 01:18:05 +02:00
$ bjam dht-support=on link=static
2007-02-20 05:32:13 +01:00
On Mac OS X, this will produce the following python module::
bin/darwin-4.0/release/dht-support-on/link-static/logging-none/threading-multi/libtorrent.so
2008-03-28 22:37:35 +01:00
using libtorrent in python
==========================
2007-02-20 05:32:13 +01:00
The python interface is nearly identical to the C++ interface. Please refer to
2013-08-12 05:18:43 +02:00
the `library reference`_ . The main differences are:
2008-03-28 22:37:35 +01:00
asio::tcp::endpoint
The endpoint type is represented as a tuple of a string (as the address) and an int for
the port number. E.g. `` ('127.0.0.1', 6881) `` represents the localhost port 6881.
2017-04-12 20:05:53 +02:00
lt::time_duration
2008-03-28 22:37:35 +01:00
The time duration is represented as a number of seconds in a regular integer.
The following functions takes a reference to a container that is filled with
entries by the function. The python equivalent of these functions instead returns
a list of entries.
* torrent_handle::get_peer_info
* torrent_handle::file_progress
* torrent_handle::get_download_queue
* torrent_handle::piece_availability
2010-05-22 10:21:40 +02:00
`` create_torrent::add_node() `` takes two arguments, one string and one integer,
instead of a pair. The string is the address and the integer is the port.
2007-02-20 05:32:13 +01:00
2016-03-18 18:43:11 +01:00
`` session::apply_settings() `` accepts a dictionary with keys matching the names
of settings in settings_pack.
When calling `` apply_settings `` , the dictionary does not need to have every settings set,
keys that are not present are not updated.
2010-12-26 09:03:02 +01:00
2016-03-18 18:43:11 +01:00
To get a python dictionary of the settings, call `` session::get_settings `` .
2010-12-26 09:03:02 +01:00
2013-08-12 05:18:43 +02:00
.. _`library reference`: reference.html
2007-02-20 05:32:13 +01:00
2017-05-01 18:05:24 +02:00
Retrieving session statistics in Python is more convenient than that in C++.
The statistics are stored as an array in `` session_stats_alert `` , which will be posted after calling `` post_session_stats() `` in the `` session `` object.
In order to interpret the statistics array, in C++ it is required to call `` session_stats_metrics() `` to get the indices of these metrics, while in Python it can be done using `` session_stats_alert.values["NAME_OF_METRIC"] `` , where `` NAME_OF_METRIC `` is the name of a metric.
2007-02-20 05:32:13 +01:00
For an example python program, see `` client.py `` in the `` bindings/python ``
directory.
2017-11-23 20:00:58 +01:00
A very simple example usage of the module would be something like this:
2007-02-20 05:32:13 +01:00
2017-11-23 20:00:58 +01:00
.. include :: ../bindings/python/simple_client.py
:code: python
:tab-width: 2
:start-after: from __future__ import print_function
2007-02-20 05:32:13 +01:00