Parse response values, when they are JSON.

This commit is contained in:
OK
2023-03-30 15:38:42 +02:00
parent c7d89333ad
commit 585ecc17c6
3 changed files with 59 additions and 3 deletions
+23 -1
View File
@@ -1,5 +1,6 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
files = ["fjerkroa_bot", "tests"]
@@ -23,3 +24,24 @@ exclude = [
"dist",
"venv",
]
[tool.poetry]
name = "fjerkroa_bot"
version = "2.0"
description = ""
authors = ["Oleksandr Kozachuk <ddeus.lp@mailnull.com>"]
[tool.poetry.dependencies]
python = "^3.8"
discordpy = "*"
openai = "*"
aiohttp = "*"
mypy = "*"
flake8 = "*"
pre-commit = "*"
pytest = "*"
setuptools = "*"
wheel = "*"
watchdog = "*"
toml = "*"
types-toml = "*"