Skip to content

Commit 1d7c701

Browse files
authored
Add httpx recipe (#3100)
* add httpx recipe * flake8 fix
1 parent 9a639f7 commit 1d7c701

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
13+
recipe = HttpxRecipe()

0 commit comments

Comments
 (0)