Skip to content

Commit

Permalink
Add httpx recipe (#3100)
Browse files Browse the repository at this point in the history
* add httpx recipe

* flake8 fix
  • Loading branch information
DexerBR authored Dec 23, 2024
1 parent 9a639f7 commit 1d7c701
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pythonforandroid/recipes/httpx/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from pythonforandroid.recipe import PyProjectRecipe


class HttpxRecipe(PyProjectRecipe):
name = "httpx"
version = "0.28.1"
url = (
"https://pypi.python.org/packages/source/h/httpx/httpx-{version}.tar.gz"
)
depends = ["httpcore", "h11", "certifi", "idna", "sniffio"]


recipe = HttpxRecipe()

0 comments on commit 1d7c701

Please sign in to comment.