Скрипт Deluge/Twisted зависает после реактора.run()
Это простой пример сценария от dev.deluge-torrent.org для взаимодействия с Deluge API.
Ничего не происходит после дорабатывания реактора.run(), и я не получаю сообщение "Соединение установлено", оно просто зависает навсегда.
Я запустил это на своем компьютере с Ubuntu, где он работает нормально, но я не смог заставить его работать на моем компьютере с Windows, где я действительно хочу использовать его.
from deluge.ui.client import client
# Import the reactor module from Twisted - this is for our mainloop
from twisted.internet import reactor
# Set up the logger to print out errors
from deluge.log import setupLogger
setupLogger()
# Connect to a daemon running on the localhost
# We get a Deferred object from this method and we use this to know if and when
# the connection succeeded or failed.
d = client.connect()
# We create a callback function to be called upon a successful connection
def on_connect_success(result):
print "Connection was successful!"
print "result:", result
# Disconnect from the daemon once we successfully connect
client.disconnect()
# Stop the twisted main loop and exit
reactor.stop()
# We add the callback to the Deferred object we got from connect()
d.addCallback(on_connect_success)
# We create another callback function to be called when an error is encountered
def on_connect_fail(result):
print "Connection failed!"
print "result:", result
# We add the callback (in this case it's an errback, for error)
d.addErrback(on_connect_fail)
# Run the twisted main loop to make everything go
reactor.run()
Я понятия не имею, как идти об отладке этой проблемы. Я очень новичок в Twisted, и насколько я понимаю, это огромная библиотека.