mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-27 10:30:41 +00:00
14 lines
199 B
Python
14 lines
199 B
Python
#
|
|
# testing 123..
|
|
#
|
|
|
|
from deluge.ui.client import sclient
|
|
sclient.set_core_uri()
|
|
#/init
|
|
|
|
print "no-args:"
|
|
stats = sclient.get_stats()
|
|
for key in sorted(stats.keys()):
|
|
print key, ":", stats[key]
|
|
|