From: Tom Christie Date: Thu, 9 Jan 2020 09:18:32 +0000 (+0000) Subject: Use www.python-httpx.org domain X-Git-Tag: 0.11.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b932d94d990faa7a945867e7cf9b0908dc8677e2;p=thirdparty%2Fhttpx.git Use www.python-httpx.org domain --- diff --git a/README.md b/README.md index 7623ef0c..aba5318a 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,10 @@ Let's get started... HTTPX builds on the well-established usability of `requests`, and gives you: -* A requests-compatible API wherever possible. -* Standard synchronous interface, but with [async support if you need it](https://www.encode.io/httpx/async/). -* HTTP/1.1 [and HTTP/2 support](https://www.encode.io/httpx/http2/). -* Ability to make requests directly to [WSGI applications](https://www.encode.io/httpx/advanced/#calling-into-python-web-apps) or [ASGI applications](https://www.encode.io/httpx/async/#calling-into-python-web-apps). +* A broadly [requests-compatible API](https://www.python-httpx.org/compatibility/). +* Standard synchronous interface, but with [async support if you need it](https://www.python-httpx.org/async/). +* HTTP/1.1 [and HTTP/2 support](https://www.python-httpx.org/http2/). +* Ability to make requests directly to [WSGI applications](https://www.python-httpx.org/advanced/#calling-into-python-web-apps) or [ASGI applications](https://www.python-httpx.org/async/#calling-into-python-web-apps). * Strict timeouts everywhere. * Fully type annotated. * 99% test coverage. @@ -82,17 +82,17 @@ httpx requires Python 3.6+ ## Documentation -Project documentation is available at [www.encode.io/httpx/](https://www.encode.io/httpx/). +Project documentation is available at [https://www.python-httpx.org/](https://www.python-httpx.org/). -For a run-through of all the basics, head over to the [QuickStart](https://www.encode.io/httpx/quickstart/). +For a run-through of all the basics, head over to the [QuickStart](https://www.python-httpx.org/quickstart/). -For more advanced topics, see the [Advanced Usage](https://www.encode.io/httpx/advanced/) section, the [async support](https://www.encode.io/httpx/async/) section, or the [HTTP/2](https://www.encode.io/httpx/http2/) section. +For more advanced topics, see the [Advanced Usage](https://www.python-httpx.org/advanced/) section, the [async support](https://www.python-httpx.org/async/) section, or the [HTTP/2](https://www.python-httpx.org/http2/) section. -The [Developer Interface](https://www.encode.io/httpx/api/) provides a comprehensive API reference. +The [Developer Interface](https://www.python-httpx.org/api/) provides a comprehensive API reference. ## Contribute -If you want to contribute with HTTPX check out the [Contributing Guide](https://www.encode.io/httpx/contributing/) to learn how to start. +If you want to contribute with HTTPX check out the [Contributing Guide](https://www.python-httpx.org/contributing/) to learn how to start. ## Dependencies diff --git a/docs/index.md b/docs/index.md index a8285834..4240f06c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -56,10 +56,10 @@ Let's get started... HTTPX is a high performance asynchronous HTTP client, that builds on the well-established usability of `requests`, and gives you: -* A requests-compatible API wherever possible. +* A broadly [requests-compatible API](compatibility.md). * Standard synchronous interface, but with [async support if you need it](async.md). * HTTP/1.1 [and HTTP/2 support](http2.md). -* Ability to make requests directly to [WSGI applications](https://www.encode.io/httpx/advanced/#calling-into-python-web-apps) or [ASGI applications](https://www.encode.io/httpx/async/#calling-into-python-web-apps). +* Ability to make requests directly to [WSGI applications](advanced.md#calling-into-python-web-apps) or [ASGI applications](async.md#calling-into-python-web-apps). * Strict timeouts everywhere. * Fully type annotated. * 99% test coverage. diff --git a/docs/quickstart.md b/docs/quickstart.md index eeabcb0c..25c1cead 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -427,7 +427,7 @@ You can also disable the timeout behavior completely... >>> httpx.get('https://github.com/', timeout=None) ``` -For advanced timeout management, see [Timeout fine-tuning](https://www.encode.io/httpx/advanced/#fine-tuning-the-configuration). +For advanced timeout management, see [Timeout fine-tuning](advanced.md#fine-tuning-the-configuration). ## Authentication diff --git a/mkdocs.yml b/mkdocs.yml index f4ab09eb..4abb8248 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,6 @@ site_name: HTTPX site_description: A next-generation HTTP client for Python. +site_url: https://www.python-httpx.org/ theme: name: 'material'