Python Libtorrent doesn't seed

944 views Asked by At

I'm trying to generate a torrent and seed it with python libtorrent, it generates the torrent, but doesn't seed it.

I am using libtorrent-0.16.18 with Python3.4 on Ubuntu 14.04

import sys
import time
import libtorrent as lt

fs = lt.file_storage()
lt.add_files(fs, "./test.txt")
t = lt.create_torrent(fs)
t.add_tracker("udp://tracker.publicbt.com:80")
t.set_creator("My Torrent")
t.set_comment("Test")
lt.set_piece_hashes(t, ".")
torrent = t.generate()

f = open("mytorrent.torrent", "wb")
f.write(lt.bencode(torrent))
f.close()

ses = lt.session()
ses.listen_on(6881, 6891)
h = ses.add_torrent({'ti': lt.torrent_info(torrent), 'save_path': '/tmp', 'seed_mode': True})

while h.is_seed():
    s = h.status()
    state_str = ['queued', 'checking', 'downloading metadata', \
      'downloading', 'finished', 'seeding', 'allocating', 'checking fastresume']

    print('\r%.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]))
    sys.stdout.flush()

    time.sleep(1)
1

There are 1 answers

0
Arvid On

Probably because you create the torrent from a file in current working directory ("."), but when you add the torrent to the session, you specify /tmp as the download directory. Presumably test.txt doesn't exist in /tmp. If you set the save_path to "." instead, it might seed.