194 lines
7.3 KiB
Python
194 lines
7.3 KiB
Python
import re
|
|
import requests #need install
|
|
from pyquery import PyQuery as pq#need install
|
|
from lxml import etree#need install
|
|
import os
|
|
import os.path
|
|
import shutil
|
|
from bs4 import BeautifulSoup#need install
|
|
from PIL import Image#need install
|
|
import time
|
|
import json
|
|
from ADC_function import *
|
|
import siro
|
|
|
|
def getTitle(htmlcode): #获取标题
|
|
doc = pq(htmlcode)
|
|
title=str(doc('div.container h3').text()).replace(' ','-')
|
|
try:
|
|
title2 = re.sub('n\d+-','',title)
|
|
return title2
|
|
except:
|
|
return title
|
|
def getStudio(htmlcode): #获取厂商
|
|
html = etree.fromstring(htmlcode,etree.HTMLParser())
|
|
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[5]/a/text()')).strip(" ['']")
|
|
return result
|
|
def getYear(htmlcode): #获取年份
|
|
html = etree.fromstring(htmlcode,etree.HTMLParser())
|
|
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[2]/text()')).strip(" ['']")
|
|
return result
|
|
def getCover(htmlcode): #获取封面链接
|
|
doc = pq(htmlcode)
|
|
image = doc('a.bigImage')
|
|
return image.attr('href')
|
|
def getRelease(htmlcode): #获取出版日期
|
|
html = etree.fromstring(htmlcode, etree.HTMLParser())
|
|
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[2]/text()')).strip(" ['']")
|
|
return result
|
|
def getRuntime(htmlcode): #获取分钟
|
|
soup = BeautifulSoup(htmlcode, 'lxml')
|
|
a = soup.find(text=re.compile('分鐘'))
|
|
return a
|
|
def getActor(htmlcode): #获取女优
|
|
b=[]
|
|
soup=BeautifulSoup(htmlcode,'lxml')
|
|
a=soup.find_all(attrs={'class':'star-name'})
|
|
for i in a:
|
|
b.append(i.get_text())
|
|
return b
|
|
def getNum(htmlcode): #获取番号
|
|
html = etree.fromstring(htmlcode, etree.HTMLParser())
|
|
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[1]/span[2]/text()')).strip(" ['']")
|
|
return result
|
|
def getDirector(htmlcode): #获取导演
|
|
html = etree.fromstring(htmlcode, etree.HTMLParser())
|
|
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[4]/a/text()')).strip(" ['']")
|
|
return result
|
|
def getOutline(htmlcode): #获取演员
|
|
doc = pq(htmlcode)
|
|
result = str(doc('tr td div.mg-b20.lh4 p.mg-b20').text())
|
|
return result
|
|
def getSerise(htmlcode):
|
|
html = etree.fromstring(htmlcode, etree.HTMLParser())
|
|
result = str(html.xpath('/html/body/div[5]/div[1]/div[2]/p[7]/a/text()')).strip(" ['']")
|
|
return result
|
|
def getTag(htmlcode): # 获取演员
|
|
tag = []
|
|
soup = BeautifulSoup(htmlcode, 'lxml')
|
|
a = soup.find_all(attrs={'class': 'genre'})
|
|
for i in a:
|
|
if 'onmouseout' in str(i):
|
|
continue
|
|
tag.append(i.get_text())
|
|
return tag
|
|
|
|
|
|
def main(number):
|
|
try:
|
|
htmlcode = get_html('https://www.javbus.com/' + number)
|
|
dww_htmlcode = get_html("https://www.dmm.co.jp/mono/dvd/-/detail/=/cid=" + number.replace("-", ''))
|
|
dic = {
|
|
'title': str(re.sub('\w+-\d+-', '', getTitle(htmlcode))),
|
|
'studio': getStudio(htmlcode),
|
|
'year': str(re.search('\d{4}', getYear(htmlcode)).group()),
|
|
'outline': getOutline(dww_htmlcode),
|
|
'runtime': getRuntime(htmlcode),
|
|
'director': getDirector(htmlcode),
|
|
'actor': getActor(htmlcode),
|
|
'release': getRelease(htmlcode),
|
|
'number': getNum(htmlcode),
|
|
'cover': getCover(htmlcode),
|
|
'imagecut': 1,
|
|
'tag': getTag(htmlcode),
|
|
'label': getSerise(htmlcode),
|
|
}
|
|
js = json.dumps(dic, ensure_ascii=False, sort_keys=True, indent=4, separators=(',', ':'), ) # .encode('UTF-8')
|
|
|
|
if 'HEYZO' in number or 'heyzo' in number or 'Heyzo' in number:
|
|
htmlcode = get_html('https://www.javbus.com/' + number)
|
|
dww_htmlcode = get_html("https://www.dmm.co.jp/mono/dvd/-/detail/=/cid=" + number.replace("-", ''))
|
|
dic = {
|
|
'title': str(re.sub('\w+-\d+-', '', getTitle(htmlcode))),
|
|
'studio': getStudio(htmlcode),
|
|
'year': getYear(htmlcode),
|
|
'outline': getOutline(dww_htmlcode),
|
|
'runtime': getRuntime(htmlcode),
|
|
'director': getDirector(htmlcode),
|
|
'actor': getActor(htmlcode),
|
|
'release': getRelease(htmlcode),
|
|
'number': getNum(htmlcode),
|
|
'cover': getCover(htmlcode),
|
|
'imagecut': 1,
|
|
'tag': getTag(htmlcode),
|
|
'label': getSerise(htmlcode),
|
|
}
|
|
js2 = json.dumps(dic, ensure_ascii=False, sort_keys=True, indent=4,
|
|
separators=(',', ':'), ) # .encode('UTF-8')
|
|
return js2
|
|
return js
|
|
except:
|
|
a=siro.main(number)
|
|
return a
|
|
|
|
def main_uncensored(number):
|
|
htmlcode = get_html('https://www.javbus.com/' + number)
|
|
dww_htmlcode = get_html("https://www.dmm.co.jp/mono/dvd/-/detail/=/cid=" + number.replace("-", ''))
|
|
dic = {
|
|
'title': str(re.sub('\w+-\d+-','',getTitle(htmlcode))).replace(getNum(htmlcode)+'-',''),
|
|
'studio': getStudio(htmlcode),
|
|
'year': getYear(htmlcode),
|
|
'outline': getOutline(dww_htmlcode),
|
|
'runtime': getRuntime(htmlcode),
|
|
'director': getDirector(htmlcode),
|
|
'actor': getActor(htmlcode),
|
|
'release': getRelease(htmlcode),
|
|
'number': getNum(htmlcode),
|
|
'cover': getCover(htmlcode),
|
|
'tag': getTag(htmlcode),
|
|
'label': getSerise(htmlcode),
|
|
'imagecut': 0,
|
|
}
|
|
js = json.dumps(dic, ensure_ascii=False, sort_keys=True, indent=4, separators=(',', ':'), ) # .encode('UTF-8')
|
|
|
|
if getYear(htmlcode) == '' or getYear(htmlcode) == 'null':
|
|
number2 = number.replace('-', '_')
|
|
htmlcode = get_html('https://www.javbus.com/' + number2)
|
|
dic2 = {
|
|
'title': str(re.sub('\w+-\d+-','',getTitle(htmlcode))).replace(getNum(htmlcode)+'-',''),
|
|
'studio': getStudio(htmlcode),
|
|
'year': getYear(htmlcode),
|
|
'outline': '',
|
|
'runtime': getRuntime(htmlcode),
|
|
'director': getDirector(htmlcode),
|
|
'actor': getActor(htmlcode),
|
|
'release': getRelease(htmlcode),
|
|
'number': getNum(htmlcode),
|
|
'cover': getCover(htmlcode),
|
|
'tag': getTag(htmlcode),
|
|
'label':getSerise(htmlcode),
|
|
'imagecut': 0,
|
|
}
|
|
js2 = json.dumps(dic2, ensure_ascii=False, sort_keys=True, indent=4, separators=(',', ':'), ) # .encode('UTF-8')
|
|
return js2
|
|
|
|
return js
|
|
|
|
|
|
# def return1():
|
|
# json_data=json.loads(main('ipx-292'))
|
|
#
|
|
# title = str(json_data['title'])
|
|
# studio = str(json_data['studio'])
|
|
# year = str(json_data['year'])
|
|
# outline = str(json_data['outline'])
|
|
# runtime = str(json_data['runtime'])
|
|
# director = str(json_data['director'])
|
|
# actor = str(json_data['actor'])
|
|
# release = str(json_data['release'])
|
|
# number = str(json_data['number'])
|
|
# cover = str(json_data['cover'])
|
|
# tag = str(json_data['tag'])
|
|
#
|
|
# print(title)
|
|
# print(studio)
|
|
# print(year)
|
|
# print(outline)
|
|
# print(runtime)
|
|
# print(director)
|
|
# print(actor)
|
|
# print(release)
|
|
# print(number)
|
|
# print(cover)
|
|
# print(tag)
|
|
# return1() |