added docs for python binding. Fixed warning in python binding.

This commit is contained in:
Arvid Norberg
2007-02-20 04:32:13 +00:00
parent 3fc73cb219
commit df46401c9c
9 changed files with 215 additions and 8 deletions

View File

@@ -0,0 +1,24 @@
#!/usr/bin/python
import libtorrent as lt
import time
ses = lt.session()
ses.listen_on(6881, 6891)
e = lt.bdecode(open("test.torrent", 'rb').read())
info = lt.torrent_info(e)
h = ses.add_torrent(info, "./", compact_mode = True)
while (not h.is_seed()):
s = h.status()
state_str = ['queued', 'checking', 'connecting', 'downloading metadata', \
'downloading', 'finished', 'seeding', 'allocating']
print '%.2f%% complete (down: %.1f kb/s up: %.1f kB/s peers: %d) %s' % \
(s.progress * 100, s.download_rate / 1000, s.upload_rate / 1000, \
s.num_peers, state_str[s.state])
time.sleep(1)

View File

@@ -44,9 +44,9 @@ struct entry_to_python
return convert(e.list());
case entry::dictionary_t:
return convert(e.dict());
default:
return object();
}
return object();
}
static PyObject* convert(entry const& e)