-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
65 lines (58 loc) · 1.38 KB
/
Copy pathmkdocs.yml
File metadata and controls
65 lines (58 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
site_name: RequestX Documentation
site_url: https://requestx.readthedocs.io/
site_description: High-performance Python HTTP client built on Rust
site_author: RequestX Team
repo_name: neuesql/requestx
repo_url: https://github.com/neuesql/requestx
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- python
- rust
- bash
- json
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: false
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- tables
- attr_list
- md_in_html
- pymdownx.superfences
- pymdownx.snippets
nav:
- Home: index.md
- Getting Started:
- Quick Start: quickstart.md
- Installation: installation.md
- Configuration: configuration.md
- User Guide:
- Async Guide: async-guide.md
- Streaming: streaming.md
- Authentication: authentication.md
- API Reference:
- Overview: api/index.md
- HTTP Functions: api/functions.md
- Response Object: api/response.md
- Client Classes: api/client.md
- Exceptions: api/exceptions.md
- Examples:
- Basic Usage: examples/basic-usage.md
- Advanced Patterns: examples/advanced.md
- Development:
- Contributing: contributing.md
- Changelog: changelog.md
extra:
version:
provider: mike
copyright: Copyright © 2024 RequestX Team