Initial commit: doujinshi-dl generic plugin framework

History reset as part of DMCA compliance. The project has been
refactored into a generic, site-agnostic download framework.
Site-specific logic lives in separate plugin packages.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ricter Zheng
2026-03-25 10:37:21 +08:00
commit 81d008036a
53 changed files with 4063 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[tool.poetry]
name = "doujinshi-dl"
version = "2.0.5"
description = "doujinshi downloader"
authors = ["Ricter Z <ricterzheng@gmail.com>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/RicterZ/doujinshi-dl"
repository = "https://github.com/RicterZ/doujinshi-dl"
packages = [{include = "doujinshi_dl"}]
include = ["doujinshi_dl/viewer/**"]
[tool.poetry.dependencies]
python = "^3.8"
requests = ">=2.28"
soupsieve = ">=2.3"
beautifulsoup4 = ">=4.11"
tabulate = ">=0.9"
iso8601 = ">=1.0"
httpx = ">=0.23"
chardet = ">=4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
doujinshi-dl = 'doujinshi_dl.command:main'