* 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
29 lines
641 B
YAML
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
|