Skip to content

Commit

Permalink
Add httpx for handling requests.
Browse files Browse the repository at this point in the history
  • Loading branch information
eli64s committed Jan 9, 2024
1 parent 8afeddb commit c14895e
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 3 deletions.
128 changes: 127 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "readmeai"
version = "0.4.997"
version = "0.4.998"
description = "🎈 Automated README file generator, powered by GPT language model APIs"
authors = ["Eli <0x.eli.64s@gmail.com>"]
license = "MIT"
Expand Down Expand Up @@ -39,10 +39,11 @@ readmeai = "readmeai.cli.commands:commands"

[tool.poetry.dependencies]
python = "^3.8.1,<4.0.0"
aiohttp = "*"
click = "^8.1.7"
colorlog = "^6.7.0"
gitpython = "^3.1.31"
h2 = "*"
httpx = "*"
openai = "^0.27.8"
pyyaml = "^6.0"
tenacity = "^8.2.2"
Expand Down
9 changes: 9 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
aiohttp==3.9.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
aiosignal==1.3.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
anyio==4.2.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
async-timeout==4.0.3 ; python_full_version >= "3.8.1" and python_version < "3.11"
attrs==23.2.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
certifi==2023.11.17 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
charset-normalizer==3.3.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
click==8.1.7 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
colorama==0.4.6 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" and (platform_system == "Windows" or sys_platform == "win32")
colorlog==6.8.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
exceptiongroup==1.2.0 ; python_full_version >= "3.8.1" and python_version < "3.11"
frozenlist==1.4.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
gitdb==4.0.11 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
gitpython==3.1.40 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
h11==0.14.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
h2==4.1.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
hpack==4.0.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
httpcore==1.0.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
httpx==0.26.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
hyperframe==6.0.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
idna==3.6 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
multidict==6.0.4 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
openai==0.27.10 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
Expand All @@ -19,6 +27,7 @@ regex==2023.12.25 ; python_full_version >= "3.8.1" and python_full_version < "4.
requests==2.31.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
setuptools==69.0.3 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
smmap==5.0.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
sniffio==1.3.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
tenacity==8.2.3 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
tiktoken==0.4.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
toml==0.10.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
Expand Down

0 comments on commit c14895e

Please sign in to comment.