Search:
Login
Preferences
About Trac
Forgot your password?
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
Back to Ticket #86
Ticket #86
: torrent_pickle.py
File torrent_pickle.py,
193 bytes
(added by
deluge-trac@rolf.leggewie.biz
,
16 years ago
)
make torrents.state file understandable
Line
1
import
pickle
2
3
state
=
pickle
.
loads
(
open
(
"torrents.state"
)
.
read
())
4
5
for
t
in
state
.
torrents
:
6
for
attr
in
dir
(
t
):
7
if
attr
[
1
]
!=
"_"
:
8
print
attr
+
": "
,
getattr
(
t
,
attr
)
9
Download in other formats:
Original Format