This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bookwalker Scraper - to be ran on the viewer pages, like: | |
// https://viewer.bookwalker.jp/03/28/viewer.html?cid=[SOMETHING] | |
// Open the first page of the manga | |
// Open up the console using CMD + Option + C | |
// Paste all of the code into the console | |
// Edit TARGET_WIDTH and TARGET_HEIGHT to your desired size | |
// Target size can be found in the network console by looking | |
// for a request coming from something similar to: | |
// OEBPS/text/book_034.xhtml.region |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Ichikomi Brand Scraper | |
* A tool to archive entire manga series from Ichikomi pages - everything that's either free | |
* or already bought. This tool doesn't circumvent any paywalls. | |
* | |
* HOW TO USE: | |
* 1. Navigate to an Ichikomi brand page (e.g., https://ichicomi.com/series/yurihime). | |
* 2. Open your browser's developer console (F12 or Ctrl+Shift+I). | |
* 3. Paste this entire script into the console and press Enter. | |
* 4. Execute the function by typing `ichikomiScraper.run();` and pressing Enter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
url = 'https://www.spike-chunsoft.co.jp/nine-eyes-tv/en/check/' | |
headers = { | |
'authority': 'www.spike-chunsoft.co.jp', | |
'sec-ch-ua': '"Microsoft Edge";v="93", " Not;A Brand";v="99", "Chromium";v="93"', | |
'accept': 'application/json, text/javascript, */*; q=0.01', | |
'x-requested-with': 'XMLHttpRequest', | |
'sec-ch-ua-mobile': '?0', | |
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4537.0 Safari/537.36 Edg/93.0.926.0', | |
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8', |