httpx/mkdocs.yml
Tom Christie 1ce3cc3269 First pass at autodoc support (#464)
* First pass at autodoc support

* Add mkautodoc requirement for docs builds

* Linting

* pip install httpx when building docs, to make it available to mkautodoc

* Fix code example in docstring slightly

* Use latest mkautodoc to resolve rendering of code snippets in docstrings

* Fill in 'Helper functions' API docs

* First pass at documenting Client

* Add autodoc for Client

* Update to mkautodoc 0.1

* Fix typos
2019-10-30 16:21:39 +01:00

29 lines
641 B
YAML

site_name: HTTPX
site_description: A next-generation HTTP client for Python.
theme:
name: 'material'
repo_name: encode/httpx
repo_url: https://github.com/encode/httpx
edit_uri: ""
nav:
- Introduction: 'index.md'
- QuickStart: 'quickstart.md'
- Advanced Usage: 'advanced.md'
- Environment Variables: 'environment_variables.md'
- Parallel Requests: 'parallel.md'
- Async Client: 'async.md'
- Requests Compatibility: 'compatibility.md'
- Developer Interface: 'api.md'
- Contributing: 'contributing.md'
markdown_extensions:
- admonition
- codehilite
- mkautodoc
extra_css:
- css/custom.css