
Search found 7 matches
- Sat Jul 10, 2010 4:16 pm
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Re: Deluge client for XBMC
I have stopped working on this as XBMC only has a python 2.4 interpreter whereas Deluge requires minimum version 2.5. It seems XBMC will not upgrade to 2.6 till next release I will wait till then
sorry!

- Sat Jul 03, 2010 11:08 pm
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Re: Deluge and XBMC python version conflict
Is there a specific library used by Deluge using python 2.5 which may work under python 2.4? an older version perhaps? e.g. twisted
- Sat Jul 03, 2010 9:09 pm
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Re: Deluge and XBMC python version conflict
I think you can configure and build with python 2.6 interpreter, but then the script will not be distributable 

- Sat Jul 03, 2010 3:19 am
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Deluge and XBMC python version conflict
I am trying to write a XBMC client for deluge. But the internal XBMC python interpreter used python 2.4 and the deluge + twisted uses python 2.6. Currently when I run a the client using python 2.6 interpreter, it connects and gets information from the server. but the same client in XBMC does not con...
- Wed Jun 30, 2010 11:47 pm
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Re: Deluge client for XBMC
Yes... I had forgotten to start the reactor.
Again that you very much for your time. I really appreciate your help
Again that you very much for your time. I really appreciate your help
- Wed Jun 30, 2010 10:42 pm
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Re: Deluge client for XBMC
Thank you for your quick reply! I actually have referred to the link before. My problem is even after adding this code class DelugeInfo: uri = None options = None sessionstate = None sessionstatefound = False STATE_DOWNLOADING = 4 STATE_SEEDING = 3 STATE_QUEUED = 2 STATE_PAUSED = 1 STATE_UNKNOWN = 0...
- Wed Jun 30, 2010 8:13 pm
- Forum: Development
- Topic: Deluge client for XBMC
- Replies: 16
- Views: 20049
Deluge client for XBMC
Hi all, I am trying to write a deluge client XBMC script to display the torrent status within XBMC. I am trying to connect to the deluge daemon running locally, but cannot do so. Any help is appreciated I am posting a basic class I am building to connect to deluge daemon. #import xbmc #import xbmcgu...