branding changed to 'pytorrent'

This commit is contained in:
Alon Zakai
2006-12-02 10:32:57 +00:00
parent f4d3d4320a
commit 6a0addcb97
11 changed files with 14 additions and 1444 deletions

View File

@@ -9,16 +9,16 @@
#*/
import torrent
import pytorrent
from time import sleep
torrent.init()
pytorrent.init()
myTorrent = torrent.addTorrent("ubuntu.torrent")
myTorrent = pytorrent.addTorrent("ubuntu.torrent")
while True:
print "STATE:"
print torrent.getState(myTorrent)
print pytorrent.getState(myTorrent)
print ""
sleep(1)