We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
httpx
1 parent 9a639f7 commit 1d7c701Copy full SHA for 1d7c701
1 file changed
pythonforandroid/recipes/httpx/__init__.py
@@ -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