1
0
forked from Mirrors/itch-dl

Add a Settings system

Allows permanently configuring itch-dl with an API key and other things
in the future. Adds a new dependency, Pydantic, to validate the config.
This commit is contained in:
Ryszard Knop
2022-06-12 19:28:31 +02:00
parent f8f3e45a1b
commit 4542057654
5 changed files with 39 additions and 22 deletions

View File

@@ -29,7 +29,8 @@ urllib3 = "^1.26.9"
requests = "^2.27.1"
python-slugify = "^6.1.2"
beautifulsoup4 = "^4.11.1"
lxml = "^4.8.0"
lxml = "^4.9.0"
pydantic = "^1.9.1"
[tool.poetry.scripts]
itch-dl = "itch_dl.cli:run"