pinklily69/Kemono.su-URL-Scraper
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
ย | ย | |||
ย | ย | |||
ย | ย | |||
ย | ย | |||
ย | ย | |||
ย | ย | |||
Repository files navigation
# Kemono.su Scraper Simple, secure, and reliable scraper to track stolen content from Kemono.su daily. Compiled into a secure DLL to protect the scraping logic from piracy countermeasures. ## ๐ Features - Daily automated checks for stolen content. - Automatic alerts and logging of newly stolen URLs. - Secure DLL encapsulation to protect scraping methods. - Easy user configuration via a simple `.ini` file. --- ## ๐ ๏ธ Installation & Setup ### Step 1: Python Installation - Download and install [Python](https://www.python.org/downloads/) (3.8 or higher). - Ensure you select **"Add Python to PATH"** during installation. ### Step 2: Install Dependencies Run the provided script (`install_dependencies.bat`) by double-clicking it: ``` install_dependencies.bat ``` ### Step 3: Configuration Edit the `config.ini` file: ```ini [Kemono] base_url = https://kemono.su/patreon/user/your_user_id_here max_pages = 200 ``` Replace `your_user_id_here` with your Kemono ID. --- ## โ๏ธ Automate Daily Scraping (Task Scheduler) Automate the scraper to run every day automatically: 1. **Create a batch file** named `run_daily_scraper.bat` in the same folder: ```batch @echo off cd /d "%~dp0" py kemono_scrapper.py ``` 2. **Setup Task Scheduler**: - Press `Win + R`, type `taskschd.msc`, and hit Enter. - Select **"Create Basic Task"** and give it a clear name (e.g., "Kemono Daily Scraper"). - Choose **"Daily"** trigger and set your desired run time (e.g., `9:00 AM`). - Select **"Start a program"** as the action. - Browse and select the batch file (`run_daily_scraper.bat`). - Check the option **"Open the Properties dialog"** after creation. - In the task properties window, under the **"Settings"** tab, check: - โ **"Run task as soon as possible after a scheduled start is missed"**. - Click **OK**. Now your scraper runs automatically every day, even if your PC was off at the scheduled time. --- ## ๐ Manual Usage (Testing) You can also manually run it (useful for initial tests): ```bash python kemono_scrapper.py ``` --- ## ๐ License Use freely, provided no support or assistance is given to piracy websites. ``` MIT License ```