{"id":47216955,"url":"https://github.com/encode/httpnext","last_synced_at":"2026-03-13T16:06:13.611Z","repository":{"id":339613937,"uuid":"883149278","full_name":"encode/httpnext","owner":"encode","description":"HTTPX 1.0 — Design proposal","archived":false,"fork":false,"pushed_at":"2026-03-09T16:15:43.000Z","size":1395,"stargazers_count":18,"open_issues_count":19,"forks_count":0,"subscribers_count":2,"default_branch":"dev","last_synced_at":"2026-03-09T21:45:33.556Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/encode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-04T13:13:50.000Z","updated_at":"2026-03-09T20:46:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/encode/httpnext","commit_stats":null,"previous_names":["encode/httpnext"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/encode/httpnext","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encode%2Fhttpnext","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encode%2Fhttpnext/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encode%2Fhttpnext/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encode%2Fhttpnext/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/encode","download_url":"https://codeload.github.com/encode/httpnext/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/encode%2Fhttpnext/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30469945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T11:00:43.441Z","status":"ssl_error","status_checked_at":"2026-03-13T11:00:23.173Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-03-13T16:06:13.085Z","updated_at":"2026-03-13T16:06:13.600Z","avatar_url":"https://github.com/encode.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"350\" height=\"208\" src=\"https://raw.githubusercontent.com/encode/httpx/master/docs/img/butterfly.png\" alt='HTTPX'\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cem\u003eHTTPX 1.0 — Design proposal.\u003c/em\u003e\u003c/p\u003e\n\n---\n\nA complete HTTP framework for Python.\n\n*Installation...*\n\n```shell\n$ pip install --pre httpx\n```\n\n*Making requests as a client...*\n\n```python\n\u003e\u003e\u003e r = httpx.get('https://www.example.org/')\n\u003e\u003e\u003e r\n\u003cResponse [200 OK]\u003e\n\u003e\u003e\u003e r.status_code\n200\n\u003e\u003e\u003e r.headers['content-type']\n'text/html; charset=UTF-8'\n\u003e\u003e\u003e r.text\n'\u003c!doctype html\u003e\\n\u003chtml\u003e\\n\u003chead\u003e\\n\u003ctitle\u003eExample Domain\u003c/title\u003e...'\n```\n\n*Serving responses as the server...*\n\n```python\n\u003e\u003e\u003e def app(request):\n...     content = httpx.HTML('\u003chtml\u003e\u003cbody\u003ehello, world.\u003c/body\u003e\u003c/html\u003e')\n...     return httpx.Response(200, content=content)\n\n\u003e\u003e\u003e httpx.run(app)\nServing on http://127.0.0.1:8080/ (Press CTRL+C to quit)\n```\n\n---\n\n# Documentation\n\nThe [HTTPX 1.0 design proposal](https://www.encode.io/httpnext/) is now available.\n\n* [Quickstart](https://www.encode.io/httpnext/quickstart)\n* [Clients](https://www.encode.io/httpnext/clients)\n* [Servers](https://www.encode.io/httpnext/servers)\n* [Requests](https://www.encode.io/httpnext/requests)\n* [Responses](https://www.encode.io/httpnext/responses)\n* [URLs](https://www.encode.io/httpnext/urls)\n* [Headers](https://www.encode.io/httpnext/headers)\n* [Content Types](https://www.encode.io/httpnext/content-types)\n* [Connections](https://www.encode.io/httpnext/connections)\n* [Parsers](https://www.encode.io/httpnext/parsers)\n* [Network Backends](https://www.encode.io/httpnext/networking)\n\n---\n\n\u003cp align=\"center\"\u003e\u003ci\u003eThis provisional design work is \u003ca href=\"https://github.com/encode/httpnext/blob/master/LICENSE.md\"\u003enot currently licensed\u003c/a\u003e for reuse.\u003cbr/\u003eDesigned \u0026 crafted with care.\u003c/i\u003e\u003cbr/\u003e\u0026mdash; 🦋 \u0026mdash;\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fencode%2Fhttpnext","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fencode%2Fhttpnext","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fencode%2Fhttpnext/lists"}