-
Notifications
You must be signed in to change notification settings - Fork 1
/
manga-downloader-2.0.py
63 lines (49 loc) · 1.89 KB
/
manga-downloader-2.0.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
##########################################################################
## Dragon Ball Manga Downloader ##
##########################################################################
from PIL import Image
from io import BytesIO
from time import sleep
import requests
import os
file = open('dbz_manga_urls.txt')
url_list = file.read().split()
volume_count = 0
total_page_count = 0
##########################################################################
##Function To Create Volume-Pdf From Images ##
##########################################################################
def createPdf():
command = "cd Manga; convert *.jpg Volume-%d.pdf" %volume_count
os.system(command)
##########################################################################
##Function To Cleanup The Mess ##
##########################################################################
def cleanup():
os.system('cd Manga; rm *.jpg')
##########################################################################
##Scraping The Manga ##
##########################################################################
if os.path.exists == False:
os.mkdir('Manga')
print "Scraping Initiated.."
for url in url_list:
volume_count = volume_count + 1
page_count = 0
while True:
url_c = url+str('%03d') %page_count+".jpg"
r = requests.get(url_c)
i = Image.open(BytesIO(r.content))
if r.status_code != requests.codes.ok or i.mode == 'P':
break
i.save("Manga/%d.jpg"%page_count, "JPEG")
page_count = page_count + 1
total_page_count = total_page_count + 1
createPdf()
sleep(10)
cleanup()
print "Volume %d Scraped Successfully..!!" %volume_count
file.close()
print "Enjoy %d Pages Worth Of Action In %d Volumes Of Your Favorite Manga..!!" %(total_page_count,volume_count)
##########################################################################
##########################################################################