Beta 11.1 Update
This commit is contained in:
parent
e2569e4541
commit
71691e1fe9
35
core.py
35
core.py
@ -89,7 +89,7 @@ def getDataFromJSON(file_number): #从JSON返回元数据
|
|||||||
|
|
||||||
# ================================================网站规则添加结束================================================
|
# ================================================网站规则添加结束================================================
|
||||||
|
|
||||||
title = str(json_data['title'])
|
title = str(json_data['title']).replace(' ','')
|
||||||
studio = json_data['studio']
|
studio = json_data['studio']
|
||||||
year = json_data['year']
|
year = json_data['year']
|
||||||
outline = json_data['outline']
|
outline = json_data['outline']
|
||||||
@ -126,7 +126,6 @@ def getDataFromJSON(file_number): #从JSON返回元数据
|
|||||||
|
|
||||||
naming_rule = eval(config['Name_Rule']['naming_rule'])
|
naming_rule = eval(config['Name_Rule']['naming_rule'])
|
||||||
location_rule = eval(config['Name_Rule']['location_rule'])
|
location_rule = eval(config['Name_Rule']['location_rule'])
|
||||||
|
|
||||||
def creatFolder(): #创建文件夹
|
def creatFolder(): #创建文件夹
|
||||||
global actor
|
global actor
|
||||||
global path
|
global path
|
||||||
@ -151,6 +150,7 @@ def DownloadFileWithFilename(url,filename,path): #path = examle:photo , video.in
|
|||||||
timeout = int(config['proxy']['timeout'])
|
timeout = int(config['proxy']['timeout'])
|
||||||
retry_count = int(config['proxy']['retry'])
|
retry_count = int(config['proxy']['retry'])
|
||||||
i = 0
|
i = 0
|
||||||
|
|
||||||
while i < retry_count:
|
while i < retry_count:
|
||||||
try:
|
try:
|
||||||
if not str(config['proxy']['proxy']) == '':
|
if not str(config['proxy']['proxy']) == '':
|
||||||
@ -199,7 +199,7 @@ def PrintFiles(filepath):
|
|||||||
try:
|
try:
|
||||||
if not os.path.exists(path):
|
if not os.path.exists(path):
|
||||||
os.makedirs(path)
|
os.makedirs(path)
|
||||||
with open(path + "/" + number + ".nfo", "wt", encoding='UTF-8') as code:
|
with open(path + "/" + naming_rule + ".nfo", "wt", encoding='UTF-8') as code:
|
||||||
print("<movie>", file=code)
|
print("<movie>", file=code)
|
||||||
print(" <title>" + naming_rule + "</title>", file=code)
|
print(" <title>" + naming_rule + "</title>", file=code)
|
||||||
print(" <set>", file=code)
|
print(" <set>", file=code)
|
||||||
@ -242,7 +242,7 @@ def PrintFiles(filepath):
|
|||||||
print(" <cover>"+cover+"</cover>", file=code)
|
print(" <cover>"+cover+"</cover>", file=code)
|
||||||
print(" <website>" + "https://www.javbus.com/"+number + "</website>", file=code)
|
print(" <website>" + "https://www.javbus.com/"+number + "</website>", file=code)
|
||||||
print("</movie>", file=code)
|
print("</movie>", file=code)
|
||||||
print("[+]Writeed! "+path + "/" + number + ".nfo")
|
print("[+]Writeed! "+path + "/" + naming_rule + ".nfo")
|
||||||
except IOError as e:
|
except IOError as e:
|
||||||
print("[-]Write Failed!")
|
print("[-]Write Failed!")
|
||||||
print(e)
|
print(e)
|
||||||
@ -280,6 +280,9 @@ def renameJpgToBackdrop_copy():
|
|||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
filepath=argparse_get_file()[0] #影片的路径
|
filepath=argparse_get_file()[0] #影片的路径
|
||||||
|
|
||||||
|
if '-c.' in filepath or '-C.' in filepath:
|
||||||
|
cn_sub='1'
|
||||||
|
|
||||||
if argparse_get_file()[1] == '': #获取手动拉去影片获取的番号
|
if argparse_get_file()[1] == '': #获取手动拉去影片获取的番号
|
||||||
try:
|
try:
|
||||||
number = str(re.findall(r'(.+?)\.',str(re.search('([^<>/\\\\|:""\\*\\?]+)\\.\\w+$',filepath).group()))).strip("['']").replace('_','-')
|
number = str(re.findall(r'(.+?)\.',str(re.search('([^<>/\\\\|:""\\*\\?]+)\\.\\w+$',filepath).group()))).strip("['']").replace('_','-')
|
||||||
@ -289,18 +292,12 @@ if __name__ == '__main__':
|
|||||||
shutil.move(filepath,'failed/')
|
shutil.move(filepath,'failed/')
|
||||||
else:
|
else:
|
||||||
number = argparse_get_file()[1]
|
number = argparse_get_file()[1]
|
||||||
|
CreatFailedFolder()
|
||||||
try:
|
getDataFromJSON(number) # 定义番号
|
||||||
CreatFailedFolder()
|
creatFolder() # 创建文件夹
|
||||||
getDataFromJSON(number) # 定义番号
|
imageDownload(filepath) # creatFoder会返回番号路径
|
||||||
creatFolder() # 创建文件夹
|
PrintFiles(filepath) # 打印文件
|
||||||
imageDownload(filepath) # creatFoder会返回番号路径
|
cutImage() # 裁剪图
|
||||||
PrintFiles(filepath) # 打印文件
|
pasteFileToFolder(filepath, path) # 移动文件
|
||||||
cutImage() # 裁剪图
|
renameJpgToBackdrop_copy()
|
||||||
pasteFileToFolder(filepath, path) # 移动文件
|
# time.sleep(20)
|
||||||
renameJpgToBackdrop_copy()
|
|
||||||
#time.sleep(20)
|
|
||||||
except:
|
|
||||||
print('[-]Movie data capture failed!')
|
|
||||||
#time.sleep(20)
|
|
||||||
os._exit(0)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user