#/* #Copyright: A. Zakai ('Kripken') http://6thsenseless.blogspot.com # #2006-15-9 # #This code is licensed under the terms of the GNU General Public License (GPL), #version 2 or above; See /usr/share/common-licenses/GPL , or see #http://www.fsf.org/licensing/licenses/gpl.html #*/ import pytorrent from time import sleep pytorrent.init("PT", 0, 5, 0, 0, "pytorrent") myTorrent = pytorrent.addTorrent("ubuntu.torrent") while True: print "STATE:" print pytorrent.getState(myTorrent) print "" sleep(1)