{"id":7275890,"url":"https://github.com/kennethreitz/requests3","last_synced_at":"2025-04-12T15:40:44.025Z","repository":{"id":136156605,"uuid":"182082917","full_name":"kennethreitz/requests3","owner":"kennethreitz","description":"Requests 3.0, for Humans and Machines, alike. 🤖","archived":false,"fork":false,"pushed_at":"2020-01-11T05:47:20.000Z","size":9967,"stargazers_count":790,"open_issues_count":1,"forks_count":39,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-04-03T16:12:12.033Z","etag":null,"topics":["forhumans","http","http-client","kennethreitz","python-requests","python3","requests","requests-module"],"latest_commit_sha":null,"homepage":"https://3.python-requests.org/","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kennethreitz.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst"},"funding":{"custom":["https://cash.me/$kennethreitz"]}},"created_at":"2019-04-18T12:23:31.000Z","updated_at":"2025-04-03T02:59:31.000Z","dependencies_parsed_at":"2023-07-18T23:00:33.514Z","dependency_job_id":null,"html_url":"https://github.com/kennethreitz/requests3","commit_stats":null,"previous_names":["kennethreitz/requests3","kennethreitz-archive/requests3"],"tags_count":1,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennethreitz%2Frequests3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennethreitz%2Frequests3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennethreitz%2Frequests3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennethreitz%2Frequests3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kennethreitz","download_url":"https://codeload.github.com/kennethreitz/requests3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248590776,"owners_count":21129888,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["forhumans","http","http-client","kennethreitz","python-requests","python3","requests","requests-module"],"created_at":"2024-04-03T06:16:18.985Z","updated_at":"2025-04-12T15:40:43.994Z","avatar_url":"https://github.com/kennethreitz.png","language":"Python","readme":"Requests III: HTTP for Humans and Machines, alike.\n==================================================\n\n[![image](https://img.shields.io/pypi/v/requests3.svg)](https://pypi.org/project/requests/)\n[![image](https://img.shields.io/pypi/l/requests3.svg)](https://pypi.org/project/requests/)\n[![image](https://img.shields.io/pypi/pyversions/requests3.svg)](https://pypi.org/project/requests/)\n[![image](https://img.shields.io/github/contributors/kennethreitz/requests3.svg)](https://github.com/requests/requests/graphs/contributors)\n[![image](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/kennethreitz)\n\n**Requests III** is an HTTP library for Python, built for Humans and Machines, alike. **This repository is a work in progress, and the expected release timeline is \"before PyCon 2020\"**.\n\n![image](https://farm5.staticflickr.com/4317/35198386374_1939af3de6_k_d.jpg)\n\nBehold, the power of Requests III:\n\n```pycon\n\u003e\u003e\u003e from requests import HTTPSession\n\n# Make a connection pool.\n\u003e\u003e\u003e http = HTTPSession()\n\n# Make a request.\n\u003e\u003e\u003e r = http.request('get', 'https://httpbin.org/ip')\n\n# View response data.\n\u003e\u003e\u003e r.json()\n{'ip': '172.69.48.124'}\n```\n\n[![image](https://raw.githubusercontent.com/requests/requests/master/docs/_static/requests-logo-small.png)](http://docs.python-requests.org/)\n\nRequests III allows you to send *organic, grass-fed* **HTTP/1.1** \u0026 **HTTP/2** (wip) requests,\nwithout the need for manual thought-labor. There's no need to add query\nstrings to your URLs, or to form-encode your POST data. Keep-alive and\nHTTP connection pooling are 100% automatic, as well.\n\nBesides, all the cool kids are doing it. Requests is one of the most\ndownloaded Python packages of all time, pulling in over ~1.6 million\ninstallations *per day*!\n\nFeature Support\n---------------\n\nRequests III is ready for today's web.\n\n- Support for H11 \u0026 H2 protocols.\n- Type-annotations for all public-facing APIs.\n- Better defaults; required timeouts.\n- ``async``/``await`` keyword \u0026 ``asyncio`` support.\n- Compability with Python 3.6+.\n\nWhile retaining all the features of [Requests Classic](https://2.python-requests.org/):\n\n-   International Domains and URLs\n-   Keep-Alive \u0026 Connection Pooling\n-   Sessions with Cookie Persistence\n-   Browser-style SSL Verification\n-   Basic/Digest Authentication\n-   Elegant Key/Value Cookies\n-   Automatic Decompression\n-   Automatic Content Decoding\n-   Unicode Response Bodies\n-   Multipart File Uploads\n-   HTTP(S) Proxy Support\n-   Connection Timeouts\n-   Streaming Downloads\n-   `.netrc` Support\n-   Chunked Requests\n\nSatisfaction guaranteed.\n\nDocumentation\n-------------\n\nFantastic documentation is available at\n\u003chttp://3.python-requests.org/\u003e, for a limited time only.\n\nHow to Contribute\n-----------------\n\n1.  Become more familiar with the project by reading our [Contributor's Guide](http://docs.python-requests.org/en/latest/dev/contributing/) and our [development philosophy](http://docs.python-requests.org/en/latest/dev/philosophy/).\n2.  Check for open issues or open a fresh issue to start a discussion\n    around a feature idea or a bug. There is a [Contributor\n    Friendly](https://github.com/requests/requests/issues?direction=desc\u0026labels=Contributor+Friendly\u0026page=1\u0026sort=updated\u0026state=open)\n    tag for issues that should be ideal for people who are not very\n    familiar with the codebase yet.\n3.  Fork [the repository](https://github.com/requests/requests) on\n    GitHub to start making your changes to the **master** branch (or\n    branch off of it).\n4.  Write a test which shows that the bug was fixed or that the feature\n    works as expected.\n5.  Send a [pull request](https://help.github.com/en/articles/creating-a-pull-request-from-a-fork) and bug the maintainer until it gets merged and\n    published. :) Make sure to add yourself to\n    [AUTHORS](https://github.com/requests/requests/blob/master/AUTHORS.rst).\n","funding_links":["https://cash.me/$kennethreitz"],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkennethreitz%2Frequests3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkennethreitz%2Frequests3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkennethreitz%2Frequests3/lists"}