httpx/mkdocs.yml
Tom Christie f1157dbc41
Use standard logging style (#2547)
* Use standard logging style

* Add docs for logging

* Drop out-of-date HTTPX_LOG_LEVEL variable docs
2023-03-20 11:30:11 +00:00

58 lines
1.5 KiB
YAML

site_name: HTTPX
site_description: A next-generation HTTP client for Python.
site_url: https://www.python-httpx.org/
theme:
name: 'material'
palette:
- scheme: 'default'
media: '(prefers-color-scheme: light)'
toggle:
icon: 'material/lightbulb'
name: "Switch to dark mode"
- scheme: 'slate'
media: '(prefers-color-scheme: dark)'
primary: 'blue'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
features:
- navigation.sections
repo_name: encode/httpx
repo_url: https://github.com/encode/httpx/
edit_uri: ""
nav:
- Introduction: 'index.md'
- Usage:
- QuickStart: 'quickstart.md'
- Advanced Usage: 'advanced.md'
- Guides:
- Async Support: 'async.md'
- HTTP/2 Support: 'http2.md'
- Logging: 'logging.md'
- Requests Compatibility: 'compatibility.md'
- Troubleshooting: 'troubleshooting.md'
- API Reference:
- Developer Interface: 'api.md'
- Exceptions: 'exceptions.md'
- Environment Variables: 'environment_variables.md'
- Community:
- Third Party Packages: 'third_party_packages.md'
- Contributing: 'contributing.md'
- Code of Conduct: 'code_of_conduct.md'
markdown_extensions:
- admonition
- codehilite:
css_class: highlight
- mkautodoc
extra_css:
- css/custom.css
extra_javascript:
- 'js/chat.js'
- 'js/sidecar-1.5.0.js'