-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
103 lines (102 loc) · 5.19 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Necro(ネクロ)
# sidmishra94540@gmail.com
# variables
CHROMEDRIVER_ID = '1qJaeVR7t2WPwhgPz6xrKKnCEVlSUmNtO'
# imports
import os, time, requests, PIL.Image, selenium.webdriver, selenium.webdriver.support.ui, selenium.webdriver.support.expected_conditions, selenium.webdriver.common.by
base_path = input('Path to manga folder: ').strip()
options = selenium.webdriver.ChromeOptions()
# driver settings
options.add_argument('--start-maximized')
options.add_argument('--log-level=OFF')
options.add_argument('--disable-web-security')
options.add_argument('window-size=0,0')
options.add_experimental_option('prefs', {'profile.default_content_setting_values.automatic_downloads': 1, 'download.default_directory': base_path+'\\downloads'})
# download chrome driver if not present
if not(os.path.exists(base_path+'\\chromedriver.exe')):
print('Downloading chromedriver.exe...')
with open(base_path+'\\chromedriver.exe', 'wb') as exe:
exe.write(requests.get('https://drive.google.com/uc?id='+CHROMEDRIVER_ID).content)
print('Download Complete!')
try:
driver = selenium.webdriver.Chrome(executable_path=base_path+'\\chromedriver.exe', options = options)
# script to download image
script = '''
function imgLoad(url) {{
return new Promise(function (resolve, reject) {{
var request = new XMLHttpRequest();
request.open('GET', url);
request.responseType = 'blob';
request.onload = function () {{
if (request.status === 200) {{
resolve(request.response);
}} else {{
reject(Error('Error code:' + request.statusText));
}}
}};
request.onerror = function () {{
reject(Error('There was a network error.'));
}};
request.send();
}});
}}
function sleep() {{
return new Promise(resolve => setTimeout(resolve, 100));
}}
imgLoad('{url}')
.then(async function (response) {{
var a = document.createElement("a");
a.style = "display: none";
a.href = window.URL.createObjectURL(response);
a.download = "{name}";
a.id = "event{name}";
a.click();
await sleep();
document.body.appendChild(a);
}},
function (Error) {{
console.log(Error);
}});
'''
# creating downloads and image directories
os.system(base_path[:2]+'&cd '+base_path+'&rmdir /Q /S downloads&mkdir downloads&cd downloads&echo.> img.png&cd ..&mkdir manga')
manga_url = input('Enter manga URL: ').strip()
driver.get(manga_url)
# extracting chapter urls
chapters = list(map(lambda x: [x.text, x.get_attribute('href')], driver.find_elements_by_class_name('chapter-name')))[::-1]
downloaded_chapters = os.listdir(base_path+'\\manga')
for chapter in chapters:
# os friendly file names
chapter_name = chapter[0].replace('&', 'and').replace('/', '~').replace(':', '~').replace('*', '~').replace('?', '~').replace('"', '~').replace('<', '~').replace('>', '~').replace('|', '~')
print(' -'+chapter_name)
# check if a chapter is already downloaded
if chapter_name+'.pdf' in downloaded_chapters:
continue
pdf = []
driver.get(chapter[1])
# extracting image urls
images = list(filter(lambda x: 'mangakakalot' in x , map(lambda x: x.get_attribute('src'), driver.find_elements_by_tag_name('img'))))
for image in range(len(images)):
# adding 00 and 0 before single and double digit image numbers respectively
name = '00'+str(image) if image<10 else '0'+str(image) if image<100 else str(image)
print(' -'+name)
# executing script to download image
driver.execute_script(script.format(url = images[image], name = name+'.png'))
# waiting for download to finish
selenium.webdriver.support.ui.WebDriverWait(driver, 100).until(selenium.webdriver.support.expected_conditions.presence_of_element_located((selenium.webdriver.common.by.By.ID, 'event'+name+'.png')))
time.sleep(5)
# check if all the images are downloaded
if(len(os.listdir(base_path+'\\downloads')[:-1]) != len(images)):
print('An error occurred in downloading: '+chapter[0]+'\nPlease restart!')
break
for image in os.listdir(base_path+'\\downloads')[:-1]:
im = PIL.Image.open(base_path+'\\downloads\\'+image).convert('RGB')
pdf.append(im)
# saving chapter as pdf
pdf[0].save(base_path+'\\manga\\'+chapter_name+'.pdf', 'PDF', resolution=100.0, save_all=True, append_images=pdf[1:])
# reset downloads folder for next chapter
os.system(base_path[:2]+'&cd '+base_path+'&rmdir /Q /S downloads&mkdir downloads&cd downloads&echo.> img.png')
except Exception as e:
print('An error occurred:', e, '\nPlease restart!')
print('Download Complete!')
driver.close()