You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
---
8
8
9
-
*The following is a design proposal and is not yet fully functional. The work is well underway, tho be aware that some parts of the codebase are still under development.*
9
+
*The following is a [design proposal](https://www.encode.io/httpnext/) and is not yet fully functional. The work is well underway, tho be aware that some parts of the codebase are still under development.*
10
10
11
11
# Background
12
12
@@ -16,10 +16,10 @@ We've been trying to handle that incrementally, working from a requests-compatib
16
16
17
17
This work presents a significantly simplified implementation of `httpx`.
18
18
19
-
* Seriously, a [radically simplified implementation](https://github.com/encode/httpx-insiders/blob/main/src/httpx/_client.py). While still fulfiling the same set of functionality.
19
+
* Seriously, a [radically simplified implementation](https://github.com/encode/httpnext/blob/main/src/httpx/_client.py). While still fulfiling the same set of functionality.
20
20
* A consistent & tightly typed set of HTTP components, with immutability throughout. Includes URLs, Query Parameters, Headers, Form & File interfaces, all of which are suitable for either client side or server side codebases.
21
-
* A re-engineered [connection pool implementation](https://github.com/encode/httpx-insiders/blob/main/src/httpx/_pool.py), with tighter more obvious concurrency handling.
22
-
* The core networking component is simple enough to be directly included. The only hard dependencies here are `h11` and `truststore`.
21
+
* A re-engineered [connection pool implementation](https://github.com/encode/httpnext/blob/main/src/httpx/_pool.py), with tighter more obvious concurrency handling.
22
+
* The core networking component is simple enough to be directly included. There is no `httpx`/`httpcore` split, and the only hard dependencies here are `h11` and `truststore`.
23
23
* Seperately namespaced packages for `ahttpx` and `httpx`.
24
24
25
25
There is also preliminary work ongoing for httpx *for both client-side and server-side usage*.
@@ -52,7 +52,7 @@ Lets get to work...
52
52
53
53
# Documentation
54
54
55
-
The httpx 1.0 [design proposal](https://staging.d2pg1230p7w6nv.amplifyapp.com/) is now available.
55
+
The httpx 1.0 [design proposal](https://www.encode.io/httpnext/) is now available.
0 commit comments