Skip to content

Commit 09fcc7a

Browse files
Update repo in docs. (#48)
* Update repo in docs. * Update links to docs homepage.
1 parent 0a04412 commit 09fcc7a

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
---
88

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.*
1010

1111
# Background
1212

@@ -16,10 +16,10 @@ We've been trying to handle that incrementally, working from a requests-compatib
1616

1717
This work presents a significantly simplified implementation of `httpx`.
1818

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.
2020
* 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`.
2323
* Seperately namespaced packages for `ahttpx` and `httpx`.
2424

2525
There is also preliminary work ongoing for httpx *for both client-side and server-side usage*.
@@ -52,7 +52,7 @@ Lets get to work...
5252

5353
# Documentation
5454

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.
5656

5757
* [Quickstart](docs/00-quickstart.md)
5858
* [Clients](docs/01-clients.md)

docs/index.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,10 @@ There is also preliminary work ongoing for httpx *for both client-side and serve
3030

3131
# Overview
3232

33-
Installation from the insiders repo...
33+
Installation...
3434

3535
```shell
36-
$ pip install git+https://github.com/encode/httpx-insiders.git
37-
```
38-
39-
Or the public installation...
40-
41-
```shell
42-
$ pip install https://staging.d2pg1230p7w6nv.amplifyapp.com/httpx-design-proposal.tar.gz
36+
$ pip install git+https://github.com/encode/httpnext.git
4337
```
4438

4539
Lets get to work...

0 commit comments

Comments
 (0)