-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
222 lines (208 loc) · 6.34 KB
/
mkdocs.yml
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
#file: noinspection SpellCheckingInspection
site_name: PyDGLab-WS
site_url: https://pydglab-ws.readthedocs.io/
site_description: 郊狼 Socket 开发库 PyDGLab-WS 文档
repo_url: https://github.com/Ljzd-PRO/PyDGLab-WS
repo_name: Ljzd-PRO/PyDGLab-WS
copyright: Copyright © 2024 by Ljzd-PRO
watch:
- pydglab_ws
- examples
nav:
- Get Started:
- Welcome to PyDG-Lab-WS: index.md
- About DG-Lab: about-dg-lab.md
- More: more.md
- Usage:
- Server: usage/server.md
- Client:
- Base: usage/client/base.md
- WebSocket Client: usage/client/ws.md
- Server With Local Client: usage/client/local.md
- Examples:
- Server: examples/server.md
- WebSocket Client: examples/ws-client.md
- Server With Local Client: examples/server-with-local-client.md
- Add Pulses: examples/add-pulses.md
- API Documentation:
- Client:
- DGLabClient: api/client/base.md
- DGLabLocalClient: api/client/local.md
- DGLabWSClient: api/client/ws.md
- DGLabWSConnect: api/client/connect.md
- Server:
- DGLabWSServer: api/server/server.md
- Base:
- enums: api/enums.md
- exceptions: api/exceptions.md
- models: api/models.md
- typing: api/typing.md
- utils: api/utils.md
- FAQ: faq.md
plugins:
- tags
- search
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: sphinx
find_stubs_package: true
members_order: source
separate_signature: true
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
- i18n:
docs_structure: folder
languages:
- locale: zh
name: 中文(简体)
default: true
nav_translations:
Get Started: 开始
Welcome to PyDG-Lab-WS: 欢迎使用 PyDG-Lab-WS
About DG-Lab: 关于 DG-Lab
More: 更多
Usage: 用法
Examples: 演示示例
Server: 服务端
WebSocket Client: WebSocket 终端
Server With Local Client: 与本地终端一体的服务端
Add Pulses: 发送波形
API Documentation: API 文档
FAQ: 常见问题
Base: 基础
enums: 枚举
exceptions: 异常
models: 数据模型
typing: 自定义类型
utils: 工具函数
Client: 客户端
DGLabClient: DG-Lab 终端
DGLabLocalClient: DG-Lab 本地终端
DGLabWSClient: DG-Lab WebSocket 终端
DGLabWSConnect: DG-Lab WebSocket 终端连接器
DGLabWSServer: DG-Lab WebSocket 服务端
site_description: "PyDG-Lab-WS 文档"
theme:
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: 切换至深色模式
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: 切换至自动
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: 切换至浅色模式
features:
- content.code.annotate
extra:
analytics:
provider: google
property: G-E2Y6VTZJZN
feedback:
title: 这个页面对你有帮助吗?
ratings:
- icon: material/emoticon-happy-outline
name: 这个页面有帮助
data: 1
note: >-
感谢你的反馈!
- icon: material/emoticon-sad-outline
name: 这个页面可以改进
data: 0
note: >-
感谢你的反馈,你可以前往我们 GitHub 仓库 Issues 或 Discussion 页面提交更多建议!
theme:
name: material
features:
- search.suggest
- search.highlight
- search.share
- navigation.tracking
- navigation.tabs
- navigation.path
- navigation.indexes
- navigation.top
- navigation.footer
- content.action.edit
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to dark mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to system preference
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra:
version:
provider: mike
analytics:
provider: google
property: G-E2Y6VTZJZN
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! You can submit more advice on Issues or Discussion page of our GitHub Repository.
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.snippets