Skip to content

Commit 34f73bb

Browse files
committed
add httpx recipe
1 parent 9a639f7 commit 34f73bb

File tree

1 file changed

+9
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)