-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmkdocs.yml
More file actions
245 lines (224 loc) · 7.14 KB
/
Copy pathmkdocs.yml
File metadata and controls
245 lines (224 loc) · 7.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
site_name: Zenoo RPC Documentation
site_description: Modern async Python library for Odoo RPC with type safety, intelligent caching, and superior developer experience. Replace odoorpc with async/await, Pydantic models, and performance optimization.
site_author: Lê Anh Tuấn
site_url: https://zenoo-rpc.readthedocs.io
# site_keywords not supported in MkDocs - moved to extra.keywords
repo_name: tuanle96/zenoo-rpc
repo_url: https://github.com/tuanle96/zenoo-rpc
edit_uri: edit/main/docs/
copyright: Copyright © 2025 Lê Anh Tuấn
theme:
name: material
language: en
# custom_dir: docs/overrides # Disabled for ReadTheDocs
palette:
# Palette toggle for light mode
- scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: blue
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- content.action.edit
- content.action.view
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/tuanle96/zenoo-rpc
name: GitHub Repository
- icon: fontawesome/brands/python
link: https://pypi.org/project/zenoo-rpc/
name: PyPI Package
- icon: fontawesome/solid/book
link: https://zenoo-rpc.readthedocs.io
name: Documentation
analytics:
provider: google
property: G-XXXXXXXXXX # Replace with actual GA4 property
tags:
Python: python
Odoo: odoo
RPC: rpc
Async: async
"Type Safety": type-safety
Performance: performance
Caching: caching
Transactions: transactions
generator: false # Remove "Made with Material for MkDocs"
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/extra.js
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg ""
emoji_index: !!python/name:material.extensions.emoji.twemoji ""
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: tuanle96
repo: zenoo-rpc
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ""
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
# minify plugin not installed - removed for ReadTheDocs compatibility
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_submodules: false
show_source: true
show_root_heading: true
show_root_toc_entry: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
separate_signature: true
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Migration from odoorpc: getting-started/migration.md
- User Guide:
- Client Usage: user-guide/client.md
- Models & Type Safety: user-guide/models.md
- Query Builder: user-guide/queries.md
- Relationships: user-guide/relationships.md
- Caching System: user-guide/caching.md
- Transactions: user-guide/transactions.md
- Batch Operations: user-guide/batch-operations.md
- Retry Mechanisms: user-guide/retry-mechanisms.md
- Error Handling: user-guide/error-handling.md
- Configuration: user-guide/configuration.md
- Tutorials:
- Basic CRUD Operations: tutorials/basic-crud.md
- Advanced Queries: tutorials/advanced-queries.md
- Performance Optimization: tutorials/performance-optimization.md
- Testing Strategies: tutorials/testing.md
- Production Deployment: tutorials/production-deployment.md
- Examples:
- Real-World Examples:
- Overview: examples/real-world/index.md
- Customer Management: examples/real-world/customer-management.md
- Sales Dashboard: examples/real-world/sales-dashboard.md
- Performance Metrics: examples/real-world/performance-metrics.md
- Custom Reports: examples/real-world/custom-reports.md
- Data Visualization: examples/real-world/data-visualization.md
- Automated Workflows: examples/real-world/automated-workflows.md
- Scheduled Tasks: examples/real-world/scheduled-tasks.md
- Email Automation: examples/real-world/email-automation.md
- Document Processing: examples/real-world/document-processing.md
- FastAPI Integration: examples/real-world/fastapi-integration.md
- Common Patterns: examples/patterns/index.md
- Integration Examples: examples/integrations/index.md
- API Reference:
- Overview: api-reference/index.md
- Client: api-reference/client.md
- Models:
- Overview: api-reference/models/index.md
- Fields: api-reference/models/fields.md
- Relationships: api-reference/models/relationships.md
- Query:
- Overview: api-reference/query/index.md
- Expressions: api-reference/query/expressions.md
- Filters: api-reference/query/filters.md
- Cache:
- Overview: api-reference/cache/index.md
- Backends: api-reference/cache/backends.md
- Strategies: api-reference/cache/strategies.md
- Transaction:
- Overview: api-reference/transaction/index.md
- Context: api-reference/transaction/context.md
- Batch:
- Overview: api-reference/batch/index.md
- Operations: api-reference/batch/operations.md
- Retry:
- Overview: api-reference/retry/index.md
- Strategies: api-reference/retry/strategies.md
- Policies: api-reference/retry/policies.md
- Exceptions:
- Overview: api-reference/exceptions/index.md
- Advanced:
- Overview: advanced/index.md
- Architecture: advanced/architecture.md
- Performance: advanced/performance.md
- Security: advanced/security.md
- Extending Zenoo RPC: advanced/extending.md
- Troubleshooting:
- Common Issues: troubleshooting/common-issues.md
- Debugging Guide: troubleshooting/debugging.md
- Monitoring: troubleshooting/monitoring.md
- FAQ: troubleshooting/faq.md
- Contributing:
- Development Setup: contributing/development.md
- Testing Guidelines: contributing/testing.md
- Documentation Guidelines: contributing/documentation.md
- Release Process: contributing/release.md
watch:
- src/zenoo_rpc