Web Scraping Jujustu Kaisen Manga
A simple yet interesting web scraping project to download all the chapters from Jujustu Kaisen Manga till date.
A simple yet interesting web scraping project to download all the chapters from Jujustu Kaisen Manga till date.
A simple yet interesting web scraping project to download all the chapters from Jujustu Kaisen Manga till date.
Tech Stack : Python + various modules like re, os, bs4 ( beautifulSoup ), urllib, requests, zipfile and selenium ( basic )
Web scraping is an essential tool for gathering data and there are plenty of examples that focus on getting tabular data from websites. I would like to improve on it and extract and download other resources such as images, links, etc. This tutorial covers the following topics in the same order :
SeleniumBeautifulSoup and requests Regex urllib and os module.cbz format :Running python app.py executes three stages and prints progress messages to the console:
1/7 Website loading . . .
2/7 Website loaded . . .
3/7 List elements found . . .
4/7 Iterating through links . . .
5/7 Iterating through links completed . . .
6/7 Writing link to files . . .
7/7 Writing link to files completed . . .
******************* CHAPTER NO ******************* 1
Downloading Images . . .
Downloaded images
...
Zipping chapter_1/chapter_1_0.jpg . . .
Zipping chapter_1/chapter_1_1.jpg . . .
Chapter images are saved in per-chapter folders and then zipped into Jujutsu_Kaisen.cbz.
Install the following packages :
pip install beautifulsoup4 selenium
Note that Selenium also requires a webdriver. This project uses the chrome webdriver ( download the executable from here and note its absolute path as we will be needing it ) but feel free to use any other web drivers that you see fit.
Before running the program, Please read the comment titled IMPORTANT in the
scrape_data()function inapp.py. Directly running the program will download ALL the chapters ( there are currently 192 chapters and each of them has around 30 images ) which will take about 6 hours. So, to limit or to choose the exact number of chapters, look into the above mentioned function
Run the program :
python app.py
Made with 💙 by Vishvam