]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Use www.python-httpx.org domain
authorTom Christie <tom@tomchristie.com>
Thu, 9 Jan 2020 09:18:32 +0000 (09:18 +0000)
committerTom Christie <tom@tomchristie.com>
Thu, 9 Jan 2020 09:18:32 +0000 (09:18 +0000)
README.md
docs/index.md
docs/quickstart.md
mkdocs.yml

index 7623ef0c44e7237c411ff9317ffb046fd727d82e..aba5318adba6fd185c61c66d1ea414a5c2ebc67d 100644 (file)
--- 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
 
index a8285834ad9233d001c0532ea55fc65c88d2be0c..4240f06cd092d35b118276d87236d599bfb3696e 100644 (file)
@@ -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.
index eeabcb0c8d963e67e17bac5f8fd067232dc12aeb..25c1cead134d23da8d2e54230f08ac4288406584 100644 (file)
@@ -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
 
index f4ab09ebbf7c53d802a9bd1fd7b752161f8a6e42..4abb8248d6668bcfa0d13b33ce5c522fcdcd42d5 100644 (file)
@@ -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'