2006-11-28 22:28:37 +00:00
|
|
|
#!/usr/bin/env python2.4
|
|
|
|
#
|
|
|
|
# Deluge backend
|
|
|
|
# A daemonized backend for
|
|
|
|
# Deluge in order to allow
|
|
|
|
# for multiple frontends
|
|
|
|
|
2006-11-28 22:55:53 +00:00
|
|
|
import sys, os, dbus
|
2006-11-28 22:28:37 +00:00
|
|
|
|
|
|
|
class Deluge:
|
|
|
|
def __init__(self):
|
2006-11-28 22:55:53 +00:00
|
|
|
## Start the daemon and register it with dbus.
|
|
|
|
|
|
|
|
|
2006-11-28 22:28:37 +00:00
|
|
|
pass
|