Generated by Chatgpt
A simple and responsive Flask-based Web UI for the nhentai CLI.
Easily download manga from nhentai.net using gallery ID, with cookie and user-agent support.
- 🔒 Password protection (set via environment variable)
- 🔽 Download by nhentai gallery ID
- 🍪 Cookie and User-Agent configuration
- 🧾 Real-time download logs (debug log viewer)
- 📦 Dockerized for easy deployment
git clone https://github.com/1030283726/nhentai-downloader-web.git
cd nhentai-downloader-web
python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
pip install -r requirements.txt
python nhentai.py
Visit http://localhost:61234
docker run -d -p 61234:61234 \
-e NHENTAI_PASSWORD=yourpassword \
-v /your-path:/nhentai \
1030283726/nhentai-downloader-web
git clone https://github.com/1030283726/nhentai-downloader-web.git
cd nhentai-downloader-web
docker build -t nhentai-downloader-web .
docker run -d -p 61234:61234 \
-e NHENTAI_PASSWORD=yourpassword \
-v /your-path:/nhentai \
nhentai-downloader-web
Variable | Description | Default | Example |
---|---|---|---|
NHENTAI_PASSWORD |
Password required to access the web UI. Stored in cookie for 30 days. | admin |
mystrongpassword |
DOWNLOAD_PATH |
Directory where downloaded doujins will be saved inside the container. | /nhentai |
/download |