41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
import requests
|
|
from time import strftime
|
|
from re import search
|
|
|
|
def writefile(filename,text):
|
|
with open(filename+'.html', 'w') as f:
|
|
f.write(text)
|
|
|
|
|
|
def main():
|
|
softID=input("ID: ")
|
|
url = "https://www.zxxk.com/soft/Preview/FirstLoadPreviewJson?softID={}&type=3&product=1&v=2&FullPreview=true"
|
|
response = requests.get(url.format(softID))
|
|
if response.status_code!=200:
|
|
print("ERROR")
|
|
print(response.status_code)
|
|
return -1
|
|
ret=response.json()["data"]
|
|
if not ret["IsSuccess"]:
|
|
print("ERROR: IsSuccess option is not true")
|
|
print(ret)
|
|
if not ret['IsRar']:
|
|
print("Not rar")
|
|
print("TotalPage=%d" % ret['TotalPage'])
|
|
print("SoftExt=%s" % ret['SoftExt'])
|
|
html=response["Html"]
|
|
# replace "data-original" to "src" for showing in browser
|
|
html=html.replace("data-original", "src")
|
|
writefile(strftime("%Y%m%d-%H:%M"),html)
|
|
else:
|
|
print("is RAR")
|
|
rar=ret['rarPreviewInfo']
|
|
for file in rar:
|
|
html=file["Html"]
|
|
# replace "data-original" to "src" for showing in browser
|
|
html=html.replace("data-original", "src")
|
|
writefile(file["SoftName"],html)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|