{ "info": { "author": "Tom Christie", "author_email": "tom@tomchristie.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Topic :: Internet :: WWW/HTTP" ], "description": "**This work has been overtaken by the `http3` project:** https://www.encode.io/http3/\n\nWe now recommend using `http3.AsyncClient()` for async/await support with a requests-compatible API.\n\n**Note**: Use `ipython` to try this from the console, since it supports `await`.\n\n```python\n>>> import http3\n>>> client = http3.AsyncClient()\n>>> r = await client.get('https://www.example.org/')\n>>> r.status_code\n200\n>>> r.text\n'\\n\\n
\\n