update u2helper
This commit is contained in:
parent
48a85c712c
commit
0c202b968f
|
@ -1,3 +1,4 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
# coding=utf-8
|
# coding=utf-8
|
||||||
|
|
||||||
import time
|
import time
|
||||||
|
@ -22,7 +23,9 @@ target_dir_parent = config["target_dir_parent"]
|
||||||
target_dir = {"Lossless Music": target_dir_parent + u"/音乐/",
|
target_dir = {"Lossless Music": target_dir_parent + u"/音乐/",
|
||||||
"BDISO": target_dir_parent + u"/动漫/",
|
"BDISO": target_dir_parent + u"/动漫/",
|
||||||
"BDrip": target_dir_parent + u"/动漫/",
|
"BDrip": target_dir_parent + u"/动漫/",
|
||||||
|
u"加流重灌": target_dir_parent + u"/动漫/",
|
||||||
u"外挂结构": target_dir_parent + u"/字幕/",
|
u"外挂结构": target_dir_parent + u"/字幕/",
|
||||||
|
"Others": target_dir_parent + u"/其他/",
|
||||||
"DVDISO": target_dir_parent + u"/动漫/"}
|
"DVDISO": target_dir_parent + u"/动漫/"}
|
||||||
|
|
||||||
headers = {'X-Transmission-Session-Id': '',
|
headers = {'X-Transmission-Session-Id': '',
|
||||||
|
@ -54,11 +57,11 @@ for torrent in result["arguments"]["torrents"]:
|
||||||
if seeding["folder"] == torrent["name"]:
|
if seeding["folder"] == torrent["name"]:
|
||||||
if seeding["catalog"] == "Lossless Music" or seeding["catalog"] == u"外挂结构":
|
if seeding["catalog"] == "Lossless Music" or seeding["catalog"] == u"外挂结构":
|
||||||
location_payload = '''{"method": "torrent-set-location", "arguments": {"move": true, "location": "''' + \
|
location_payload = '''{"method": "torrent-set-location", "arguments": {"move": true, "location": "''' + \
|
||||||
target_dir[seeding["catalog"].encode('utf8')] + '''", "ids": [''' + \
|
target_dir[seeding["catalog"]].encode('utf8') + '''", "ids": [''' + \
|
||||||
str(torrent["id"]) + ''']}}'''
|
str(torrent["id"]) + ''']}}'''
|
||||||
else:
|
else:
|
||||||
location_payload = '''{"method": "torrent-set-location", "arguments": {"move": true, "location": "''' + \
|
location_payload = '''{"method": "torrent-set-location", "arguments": {"move": true, "location": "''' + \
|
||||||
target_dir[seeding["catalog"]] + \
|
target_dir[seeding["catalog"]].encode('utf8') + \
|
||||||
seeding["name"].encode('utf8') + '''", "ids": [''' + \
|
seeding["name"].encode('utf8') + '''", "ids": [''' + \
|
||||||
str(torrent["id"]) + ''']}}'''
|
str(torrent["id"]) + ''']}}'''
|
||||||
print location_payload
|
print location_payload
|
||||||
|
|
Loading…
Reference in New Issue