Skip to content

Commit 1c90d9a

Browse files
committed
add httpx recipe
1 parent 9a639f7 commit 1c90d9a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from pythonforandroid.recipe import PyProjectRecipe
2+
3+
4+
class HttpxRecipe(PyProjectRecipe):
5+
name = "httpx"
6+
version = "0.28.1"
7+
url = (
8+
"https://pypi.python.org/packages/source/h/httpx/httpx-{version}.tar.gz"
9+
)
10+
depends = ["httpcore", "h11", "certifi", "idna", "sniffio"]
11+
12+
recipe = HttpxRecipe()

0 commit comments

Comments
 (0)