audex 1.0.7a3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- audex/__init__.py +9 -0
- audex/__main__.py +7 -0
- audex/cli/__init__.py +189 -0
- audex/cli/apis/__init__.py +12 -0
- audex/cli/apis/init/__init__.py +34 -0
- audex/cli/apis/init/gencfg.py +130 -0
- audex/cli/apis/init/setup.py +330 -0
- audex/cli/apis/init/vprgroup.py +125 -0
- audex/cli/apis/serve.py +141 -0
- audex/cli/args.py +356 -0
- audex/cli/exceptions.py +44 -0
- audex/cli/helper/__init__.py +0 -0
- audex/cli/helper/ansi.py +193 -0
- audex/cli/helper/display.py +288 -0
- audex/config/__init__.py +64 -0
- audex/config/core/__init__.py +30 -0
- audex/config/core/app.py +29 -0
- audex/config/core/audio.py +45 -0
- audex/config/core/logging.py +163 -0
- audex/config/core/session.py +11 -0
- audex/config/helper/__init__.py +1 -0
- audex/config/helper/client/__init__.py +1 -0
- audex/config/helper/client/http.py +28 -0
- audex/config/helper/client/websocket.py +21 -0
- audex/config/helper/provider/__init__.py +1 -0
- audex/config/helper/provider/dashscope.py +13 -0
- audex/config/helper/provider/unisound.py +18 -0
- audex/config/helper/provider/xfyun.py +23 -0
- audex/config/infrastructure/__init__.py +31 -0
- audex/config/infrastructure/cache.py +51 -0
- audex/config/infrastructure/database.py +48 -0
- audex/config/infrastructure/recorder.py +32 -0
- audex/config/infrastructure/store.py +19 -0
- audex/config/provider/__init__.py +18 -0
- audex/config/provider/transcription.py +109 -0
- audex/config/provider/vpr.py +99 -0
- audex/container.py +40 -0
- audex/entity/__init__.py +468 -0
- audex/entity/doctor.py +109 -0
- audex/entity/doctor.pyi +51 -0
- audex/entity/fields.py +401 -0
- audex/entity/segment.py +115 -0
- audex/entity/segment.pyi +38 -0
- audex/entity/session.py +133 -0
- audex/entity/session.pyi +47 -0
- audex/entity/utterance.py +142 -0
- audex/entity/utterance.pyi +48 -0
- audex/entity/vp.py +68 -0
- audex/entity/vp.pyi +35 -0
- audex/exceptions.py +157 -0
- audex/filters/__init__.py +692 -0
- audex/filters/generated/__init__.py +21 -0
- audex/filters/generated/doctor.py +987 -0
- audex/filters/generated/segment.py +723 -0
- audex/filters/generated/session.py +978 -0
- audex/filters/generated/utterance.py +939 -0
- audex/filters/generated/vp.py +815 -0
- audex/helper/__init__.py +1 -0
- audex/helper/hash.py +33 -0
- audex/helper/mixin.py +65 -0
- audex/helper/net.py +19 -0
- audex/helper/settings/__init__.py +830 -0
- audex/helper/settings/fields.py +317 -0
- audex/helper/stream.py +153 -0
- audex/injectors/__init__.py +1 -0
- audex/injectors/config.py +12 -0
- audex/injectors/lifespan.py +7 -0
- audex/lib/__init__.py +1 -0
- audex/lib/cache/__init__.py +383 -0
- audex/lib/cache/inmemory.py +513 -0
- audex/lib/database/__init__.py +83 -0
- audex/lib/database/sqlite.py +406 -0
- audex/lib/exporter.py +189 -0
- audex/lib/injectors/__init__.py +1 -0
- audex/lib/injectors/cache.py +25 -0
- audex/lib/injectors/container.py +47 -0
- audex/lib/injectors/exporter.py +26 -0
- audex/lib/injectors/recorder.py +33 -0
- audex/lib/injectors/server.py +17 -0
- audex/lib/injectors/session.py +18 -0
- audex/lib/injectors/sqlite.py +24 -0
- audex/lib/injectors/store.py +13 -0
- audex/lib/injectors/transcription.py +42 -0
- audex/lib/injectors/usb.py +12 -0
- audex/lib/injectors/vpr.py +65 -0
- audex/lib/injectors/wifi.py +7 -0
- audex/lib/recorder.py +844 -0
- audex/lib/repos/__init__.py +149 -0
- audex/lib/repos/container.py +23 -0
- audex/lib/repos/database/__init__.py +1 -0
- audex/lib/repos/database/sqlite.py +672 -0
- audex/lib/repos/decorators.py +74 -0
- audex/lib/repos/doctor.py +286 -0
- audex/lib/repos/segment.py +302 -0
- audex/lib/repos/session.py +285 -0
- audex/lib/repos/tables/__init__.py +70 -0
- audex/lib/repos/tables/doctor.py +137 -0
- audex/lib/repos/tables/segment.py +113 -0
- audex/lib/repos/tables/session.py +140 -0
- audex/lib/repos/tables/utterance.py +131 -0
- audex/lib/repos/tables/vp.py +102 -0
- audex/lib/repos/utterance.py +288 -0
- audex/lib/repos/vp.py +286 -0
- audex/lib/restful.py +251 -0
- audex/lib/server/__init__.py +97 -0
- audex/lib/server/auth.py +98 -0
- audex/lib/server/handlers.py +248 -0
- audex/lib/server/templates/index.html.j2 +226 -0
- audex/lib/server/templates/login.html.j2 +111 -0
- audex/lib/server/templates/static/script.js +68 -0
- audex/lib/server/templates/static/style.css +579 -0
- audex/lib/server/types.py +123 -0
- audex/lib/session.py +503 -0
- audex/lib/store/__init__.py +238 -0
- audex/lib/store/localfile.py +411 -0
- audex/lib/transcription/__init__.py +33 -0
- audex/lib/transcription/dashscope.py +525 -0
- audex/lib/transcription/events.py +62 -0
- audex/lib/usb.py +554 -0
- audex/lib/vpr/__init__.py +38 -0
- audex/lib/vpr/unisound/__init__.py +185 -0
- audex/lib/vpr/unisound/types.py +469 -0
- audex/lib/vpr/xfyun/__init__.py +483 -0
- audex/lib/vpr/xfyun/types.py +679 -0
- audex/lib/websocket/__init__.py +8 -0
- audex/lib/websocket/connection.py +485 -0
- audex/lib/websocket/pool.py +991 -0
- audex/lib/wifi.py +1146 -0
- audex/lifespan.py +75 -0
- audex/service/__init__.py +27 -0
- audex/service/decorators.py +73 -0
- audex/service/doctor/__init__.py +652 -0
- audex/service/doctor/const.py +36 -0
- audex/service/doctor/exceptions.py +96 -0
- audex/service/doctor/types.py +54 -0
- audex/service/export/__init__.py +236 -0
- audex/service/export/const.py +17 -0
- audex/service/export/exceptions.py +34 -0
- audex/service/export/types.py +21 -0
- audex/service/injectors/__init__.py +1 -0
- audex/service/injectors/container.py +53 -0
- audex/service/injectors/doctor.py +34 -0
- audex/service/injectors/export.py +27 -0
- audex/service/injectors/session.py +49 -0
- audex/service/session/__init__.py +754 -0
- audex/service/session/const.py +34 -0
- audex/service/session/exceptions.py +67 -0
- audex/service/session/types.py +91 -0
- audex/types.py +39 -0
- audex/utils.py +287 -0
- audex/valueobj/__init__.py +81 -0
- audex/valueobj/common/__init__.py +1 -0
- audex/valueobj/common/auth.py +84 -0
- audex/valueobj/common/email.py +16 -0
- audex/valueobj/common/ops.py +22 -0
- audex/valueobj/common/phone.py +84 -0
- audex/valueobj/common/version.py +72 -0
- audex/valueobj/session.py +19 -0
- audex/valueobj/utterance.py +15 -0
- audex/view/__init__.py +51 -0
- audex/view/container.py +17 -0
- audex/view/decorators.py +303 -0
- audex/view/pages/__init__.py +1 -0
- audex/view/pages/dashboard/__init__.py +286 -0
- audex/view/pages/dashboard/wifi.py +407 -0
- audex/view/pages/login.py +110 -0
- audex/view/pages/recording.py +348 -0
- audex/view/pages/register.py +202 -0
- audex/view/pages/sessions/__init__.py +196 -0
- audex/view/pages/sessions/details.py +224 -0
- audex/view/pages/sessions/export.py +443 -0
- audex/view/pages/settings.py +374 -0
- audex/view/pages/voiceprint/__init__.py +1 -0
- audex/view/pages/voiceprint/enroll.py +195 -0
- audex/view/pages/voiceprint/update.py +195 -0
- audex/view/static/css/dashboard.css +452 -0
- audex/view/static/css/glass.css +22 -0
- audex/view/static/css/global.css +541 -0
- audex/view/static/css/login.css +386 -0
- audex/view/static/css/recording.css +439 -0
- audex/view/static/css/register.css +293 -0
- audex/view/static/css/sessions/styles.css +501 -0
- audex/view/static/css/settings.css +186 -0
- audex/view/static/css/voiceprint/enroll.css +43 -0
- audex/view/static/css/voiceprint/styles.css +209 -0
- audex/view/static/css/voiceprint/update.css +44 -0
- audex/view/static/images/logo.svg +95 -0
- audex/view/static/js/recording.js +42 -0
- audex-1.0.7a3.dist-info/METADATA +361 -0
- audex-1.0.7a3.dist-info/RECORD +192 -0
- audex-1.0.7a3.dist-info/WHEEL +4 -0
- audex-1.0.7a3.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1,361 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: audex
|
|
3
|
+
Version: 1.0.7a3
|
|
4
|
+
Summary:
|
|
5
|
+
Author: BoChenSHEN
|
|
6
|
+
Author-email: 6goddddddd@gmail.com
|
|
7
|
+
Requires-Python: >=3.10,<3.14
|
|
8
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Provides-Extra: docs
|
|
15
|
+
Provides-Extra: test
|
|
16
|
+
Requires-Dist: aiofiles (>=25.1,<26)
|
|
17
|
+
Requires-Dist: aiosqlite (>=0.21,<0.22)
|
|
18
|
+
Requires-Dist: argon2-cffi (>=25.1,<26)
|
|
19
|
+
Requires-Dist: cachetools (>=6.2.2,<7)
|
|
20
|
+
Requires-Dist: dependency-injector (>=4.48.2,<5)
|
|
21
|
+
Requires-Dist: dotenv (>=0.9.9,<0.10)
|
|
22
|
+
Requires-Dist: halo (>=0.0.31,<0.0.32)
|
|
23
|
+
Requires-Dist: httpx (>=0.28.1,<0.29)
|
|
24
|
+
Requires-Dist: jinja2 (>=3.1.6,<4)
|
|
25
|
+
Requires-Dist: loguru (>=0.7.3,<0.8)
|
|
26
|
+
Requires-Dist: mkdocs (>=1.6.1,<2) ; extra == "docs"
|
|
27
|
+
Requires-Dist: mkdocs-material (>=9.7,<10) ; extra == "docs"
|
|
28
|
+
Requires-Dist: mkdocs-minify-plugin (>=0.8,<0.9) ; extra == "docs"
|
|
29
|
+
Requires-Dist: mkdocstrings[python] (>=0.30.1,<0.31) ; extra == "docs"
|
|
30
|
+
Requires-Dist: mypy (>=1.18.2,<2) ; extra == "test"
|
|
31
|
+
Requires-Dist: nicegui (>=3.3.1,<4)
|
|
32
|
+
Requires-Dist: numpy (>=1.26.4,<2)
|
|
33
|
+
Requires-Dist: pre-commit (>=4.4,<5) ; extra == "dev"
|
|
34
|
+
Requires-Dist: pyaudio (>=0.2.14,<0.3)
|
|
35
|
+
Requires-Dist: pydantic (>=2.12.4,<3)
|
|
36
|
+
Requires-Dist: pydantic-settings (>=2.12,<3)
|
|
37
|
+
Requires-Dist: pydub (>=0.25.1,<0.26)
|
|
38
|
+
Requires-Dist: pylint (>=4.0.3,<5) ; extra == "test"
|
|
39
|
+
Requires-Dist: pymdown-extensions (>=10.17.1,<11) ; extra == "docs"
|
|
40
|
+
Requires-Dist: pyqt6 (>=6.10,<7) ; sys_platform != "linux"
|
|
41
|
+
Requires-Dist: pyqt6-webengine (>=6.10,<7) ; sys_platform != "linux"
|
|
42
|
+
Requires-Dist: pytest (>=9.0.1,<10) ; extra == "test"
|
|
43
|
+
Requires-Dist: pytest-asyncio (>=1.3,<2) ; extra == "test"
|
|
44
|
+
Requires-Dist: pytest-cov (>=7,<8) ; extra == "test"
|
|
45
|
+
Requires-Dist: pyudev (>=0.24.4,<0.25) ; sys_platform == "linux"
|
|
46
|
+
Requires-Dist: pywebview (>=6.1,<7)
|
|
47
|
+
Requires-Dist: pywin32 (>=311,<312) ; sys_platform == "win32"
|
|
48
|
+
Requires-Dist: qtpy (>=2.4.3,<3)
|
|
49
|
+
Requires-Dist: ruff (>=0.14.5,<0.15) ; extra == "dev"
|
|
50
|
+
Requires-Dist: sqlalchemy (>=2.0.44,<3)
|
|
51
|
+
Requires-Dist: sqlmodel (>=0.0.27,<0.0.28)
|
|
52
|
+
Requires-Dist: starlette (>=0.50,<0.51)
|
|
53
|
+
Requires-Dist: tenacity (>=9.1.2,<10)
|
|
54
|
+
Requires-Dist: types-aiofiles (>=25.1.0.20251011,<26) ; extra == "test"
|
|
55
|
+
Requires-Dist: types-cachetools (>=6.2.0.20251022,<7) ; extra == "test"
|
|
56
|
+
Requires-Dist: types-pyyaml (>=6.0.12.20250915,<7) ; extra == "test"
|
|
57
|
+
Requires-Dist: uvicorn[standard] (>=0.38,<0.39)
|
|
58
|
+
Requires-Dist: websockets (>=15.0.1,<16)
|
|
59
|
+
Requires-Dist: wmi (>=1.5.1,<2) ; sys_platform == "win32"
|
|
60
|
+
Description-Content-Type: text/markdown
|
|
61
|
+
|
|
62
|
+
<div align="center">
|
|
63
|
+
|
|
64
|
+

|
|
65
|
+
|
|
66
|
+
# Audex
|
|
67
|
+
|
|
68
|
+
[](https://pypi.org/project/audex/)
|
|
69
|
+
[](https://pypi.org/project/audex/)
|
|
70
|
+
[](https://github.com/6ixGODD/audex/blob/main/LICENSE)
|
|
71
|
+
[](https://github.com/6ixGODD/audex/stargazers)
|
|
72
|
+
|
|
73
|
+
Derived from "Audio Exchange", Smart Medical Recording & Transcription System with voice recognition and speaker identification.
|
|
74
|
+
|
|
75
|
+
[Documentation](https://6ixgodd.github.io/audex/) • [Installation Guide](https://6ixgodd.github.io/audex/installation/) • [API Reference](https://6ixgodd.github.io/audex/reference/)
|
|
76
|
+
|
|
77
|
+
English | [简体中文](README.zh-CN.md)
|
|
78
|
+
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## System Requirements
|
|
84
|
+
|
|
85
|
+
- Python 3.10-3.13
|
|
86
|
+
- Poetry
|
|
87
|
+
- PortAudio
|
|
88
|
+
- FFmpeg
|
|
89
|
+
- SQLite3
|
|
90
|
+
- PyQt6 (Linux: install from system packages)
|
|
91
|
+
- NetworkManager (Linux: for WiFi connectivity)
|
|
92
|
+
|
|
93
|
+
### System Dependencies
|
|
94
|
+
|
|
95
|
+
**Ubuntu/Debian:**
|
|
96
|
+
```bash
|
|
97
|
+
sudo apt-get install python3-pyqt6 python3-pyqt6.qtwebengine \
|
|
98
|
+
portaudio19-dev ffmpeg sqlite3 network-manager \
|
|
99
|
+
libfcitx5-qt6-1 alsa-utils gcc build-essential
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
**macOS:**
|
|
103
|
+
```bash
|
|
104
|
+
brew install portaudio ffmpeg sqlite3
|
|
105
|
+
pip install PyQt6 PyQt6-WebEngine
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
**Windows:**
|
|
109
|
+
- PortAudio is bundled with PyAudio wheel
|
|
110
|
+
- FFmpeg: Download from https://ffmpeg.org/download.html and add to `PATH`
|
|
111
|
+
- SQLite3: Included with Python installation
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## Installation
|
|
116
|
+
|
|
117
|
+
### From PyPI
|
|
118
|
+
|
|
119
|
+
```bash
|
|
120
|
+
pip install audex
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### From Source
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
git clone https://github.com/6ixGODD/audex.git
|
|
127
|
+
cd audex
|
|
128
|
+
poetry install
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
### DEB Package (Debian/Ubuntu/Raspberry Pi)
|
|
132
|
+
|
|
133
|
+
Download the appropriate DEB package for your architecture from [Releases](https://github.com/6ixGODD/audex/releases).
|
|
134
|
+
|
|
135
|
+
For detailed installation instructions, see [Installation Guide](https://6ixgodd.github.io/audex/installation/).
|
|
136
|
+
|
|
137
|
+
**Quick Install:**
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Download and install
|
|
141
|
+
sudo dpkg -i audex_{version}_arm64.deb
|
|
142
|
+
sudo apt-get install -f
|
|
143
|
+
|
|
144
|
+
# Run configuration wizard
|
|
145
|
+
sudo audex-setup
|
|
146
|
+
|
|
147
|
+
# Start application
|
|
148
|
+
sudo audex
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## Usage
|
|
154
|
+
|
|
155
|
+
### Run Application
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
# Start with config file
|
|
159
|
+
audex -c config.yaml
|
|
160
|
+
|
|
161
|
+
# Using installed package
|
|
162
|
+
python -m audex -c config.yaml
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
### Initialize Configuration
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
# Generate default configuration
|
|
169
|
+
audex init gencfg --format yaml --output config.yaml
|
|
170
|
+
|
|
171
|
+
# Generate system configuration (Linux)
|
|
172
|
+
audex init gencfg --format system --output /etc/audex/config.yml --platform linux
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
### Initialize VPR Group
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
# Initialize voice print recognition group
|
|
179
|
+
audex init vprgroup --config config.yaml
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### File Export Server
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
# Start file export server
|
|
186
|
+
audex serve --config config.yaml
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
## Configuration
|
|
192
|
+
|
|
193
|
+
Configuration file structure:
|
|
194
|
+
|
|
195
|
+
```yaml
|
|
196
|
+
core:
|
|
197
|
+
app:
|
|
198
|
+
app_name: Audex
|
|
199
|
+
native: true
|
|
200
|
+
logging:
|
|
201
|
+
targets:
|
|
202
|
+
- logname: stdout
|
|
203
|
+
loglevel: info
|
|
204
|
+
audio:
|
|
205
|
+
sample_rate: 16000
|
|
206
|
+
|
|
207
|
+
provider:
|
|
208
|
+
transcription:
|
|
209
|
+
provider: dashscope
|
|
210
|
+
dashscope:
|
|
211
|
+
credential:
|
|
212
|
+
api_key: <YOUR_API_KEY>
|
|
213
|
+
|
|
214
|
+
vpr:
|
|
215
|
+
provider: xfyun
|
|
216
|
+
xfyun:
|
|
217
|
+
credential:
|
|
218
|
+
app_id: <YOUR_APP_ID>
|
|
219
|
+
api_key: <YOUR_API_KEY>
|
|
220
|
+
api_secret: <YOUR_API_SECRET>
|
|
221
|
+
|
|
222
|
+
infrastructure:
|
|
223
|
+
sqlite:
|
|
224
|
+
uri: "sqlite+aiosqlite:///path/to/audex.db"
|
|
225
|
+
store:
|
|
226
|
+
type: localfile
|
|
227
|
+
base_url: /path/to/store
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
See `config.example.yml` for complete configuration options.
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## Development
|
|
235
|
+
|
|
236
|
+
### Install Development Dependencies
|
|
237
|
+
|
|
238
|
+
```bash
|
|
239
|
+
# Development environment
|
|
240
|
+
poetry install --extras dev
|
|
241
|
+
|
|
242
|
+
# Testing environment
|
|
243
|
+
poetry install --extras test
|
|
244
|
+
|
|
245
|
+
# Documentation environment
|
|
246
|
+
poetry install --extras docs
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
### Build Package
|
|
250
|
+
|
|
251
|
+
```bash
|
|
252
|
+
# Build wheel and sdist
|
|
253
|
+
poetry build
|
|
254
|
+
|
|
255
|
+
# Output: dist/audex-{version}-py3-none-any.whl
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
### Run Tests
|
|
259
|
+
|
|
260
|
+
```bash
|
|
261
|
+
poetry install --extras test
|
|
262
|
+
poetry run pytest
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### Documentation
|
|
266
|
+
|
|
267
|
+
```bash
|
|
268
|
+
poetry install --extras docs
|
|
269
|
+
poetry run mkdocs serve
|
|
270
|
+
|
|
271
|
+
# Visit: http://127.0.0.1:8000
|
|
272
|
+
```
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
276
|
+
## DEB Package Development
|
|
277
|
+
|
|
278
|
+
### Build DEB Package
|
|
279
|
+
|
|
280
|
+
**Prerequisites:**
|
|
281
|
+
- Docker
|
|
282
|
+
|
|
283
|
+
**Build:**
|
|
284
|
+
|
|
285
|
+
```bash
|
|
286
|
+
cd packaging/linux
|
|
287
|
+
|
|
288
|
+
# Build for ARM64 (Raspberry Pi)
|
|
289
|
+
./build.sh
|
|
290
|
+
|
|
291
|
+
# Build for AMD64
|
|
292
|
+
./build.sh amd64
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
**Output:** `dist/audex_{version}_{arch}.deb`
|
|
296
|
+
|
|
297
|
+
### Test DEB Package
|
|
298
|
+
|
|
299
|
+
```bash
|
|
300
|
+
cd packaging/linux
|
|
301
|
+
./test.sh arm64
|
|
302
|
+
```
|
|
303
|
+
|
|
304
|
+
**Inside test container:**
|
|
305
|
+
|
|
306
|
+
```bash
|
|
307
|
+
# Install package
|
|
308
|
+
dpkg -i /tmp/audex.deb
|
|
309
|
+
apt-get install -f
|
|
310
|
+
|
|
311
|
+
# Verify installation
|
|
312
|
+
which audex
|
|
313
|
+
audex --version
|
|
314
|
+
|
|
315
|
+
# View configurations
|
|
316
|
+
cat /etc/audex/config.system.yml
|
|
317
|
+
cat /etc/audex/config.example.yml
|
|
318
|
+
|
|
319
|
+
# Run configuration wizard
|
|
320
|
+
audex-setup
|
|
321
|
+
|
|
322
|
+
# Exit container
|
|
323
|
+
exit
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
---
|
|
327
|
+
|
|
328
|
+
## Project Structure
|
|
329
|
+
|
|
330
|
+
```
|
|
331
|
+
audex/
|
|
332
|
+
├── audex/ # Main package
|
|
333
|
+
│ ├── cli/ # Command-line interface
|
|
334
|
+
│ ├── service/ # Business layer
|
|
335
|
+
│ ├── entity/ # Entities
|
|
336
|
+
│ ├── filters/ # Data filters
|
|
337
|
+
│ ├── valueobj/ # Value objects
|
|
338
|
+
│ ├── view/ # View layer
|
|
339
|
+
│ └── lib/ # Shared libraries
|
|
340
|
+
├── packaging/
|
|
341
|
+
│ └── linux/ # DEB packaging
|
|
342
|
+
│ ├── templates/ # Package templates
|
|
343
|
+
│ ├── build.sh # Build script
|
|
344
|
+
│ └── test.sh # Test script
|
|
345
|
+
├── scripts/ # Development scripts
|
|
346
|
+
├── tests/ # Test suite
|
|
347
|
+
└── pyproject.toml # Project configuration
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
---
|
|
351
|
+
|
|
352
|
+
## Links
|
|
353
|
+
|
|
354
|
+
- **Documentation**: https://6ixgodd.github.io/audex/
|
|
355
|
+
- **PyPI**: https://pypi.org/project/audex/
|
|
356
|
+
- **GitHub**: https://github.com/6ixGODD/audex
|
|
357
|
+
- **Issues**: https://github.com/6ixGODD/audex/issues
|
|
358
|
+
- **Releases**: https://github.com/6ixGODD/audex/releases
|
|
359
|
+
|
|
360
|
+
---
|
|
361
|
+
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
audex/__init__.py,sha256=3JNyGcNlB0NKqw8W5pJVxJBVWtYCv5b1DIaztDAaZn0,446
|
|
2
|
+
audex/__main__.py,sha256=8OC-owLtpaCSj4K2iGCRFIkzwGIJ_kbx1yVFG6J9aNY,93
|
|
3
|
+
audex/cli/__init__.py,sha256=aG-x2bsgcSMyMRg6nEEFqLT9-lpp45jOJilI7rc5Ea4,5324
|
|
4
|
+
audex/cli/apis/__init__.py,sha256=6Ae2vvJyUasT-glelrTBleMhrdY0ex6pLCwlOzebV88,394
|
|
5
|
+
audex/cli/apis/init/__init__.py,sha256=Qj06ttLrcbBt04WuCFkACHF90tK4AacmNZhmd5dNPM4,951
|
|
6
|
+
audex/cli/apis/init/gencfg.py,sha256=PhJs6zue245gR1XvImYrveGbfdr5bZYJRUAHhMaPVzc,5043
|
|
7
|
+
audex/cli/apis/init/setup.py,sha256=X0AdA9CpY1iXdyk47E914oa1P51tsj2hHcyi69AvdmM,13349
|
|
8
|
+
audex/cli/apis/init/vprgroup.py,sha256=tGzNQ3RIuet2e0WLI5qmv1tSwCRDb8nKvfnPDpEmGWc,4578
|
|
9
|
+
audex/cli/apis/serve.py,sha256=taI-wMUCLO56zqpfwvvHXg2L2AJ0yLxh17SGLJcvF2I,4976
|
|
10
|
+
audex/cli/args.py,sha256=4zhJIi2SwqllSxLn1UYZYfXEBSjZivJ0YW4QI2HDne0,11732
|
|
11
|
+
audex/cli/exceptions.py,sha256=_WS8K44KyZ4DlgqRtkf7oRKEtufg-upkyNH4AnapbnQ,1499
|
|
12
|
+
audex/cli/helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
audex/cli/helper/ansi.py,sha256=NMsrYBraOZxzoiYXwLhF_BFmHbNMFOseBh-CBtKDeQM,5731
|
|
14
|
+
audex/cli/helper/display.py,sha256=n4JtBhengGzKa9u9VDL-jEGj4ESq5CHRDxUvb2oogco,7897
|
|
15
|
+
audex/config/__init__.py,sha256=Z4naRhAEwUyE0VblzmN9K6DtmC2e-szIzbtYkL-RHRI,1626
|
|
16
|
+
audex/config/core/__init__.py,sha256=EG8dpzpcknHL3GADLYdgh1eIQEDXc-kNHk1LaAUcp4g,876
|
|
17
|
+
audex/config/core/app.py,sha256=8zruQb1CGeutAS5RyAH0zU35W9plXocnb4CeqZajjK4,719
|
|
18
|
+
audex/config/core/audio.py,sha256=F-JCtYEhUqpedC_JpDWr7u_-kz7UrUKOwWXsTT99fKs,1196
|
|
19
|
+
audex/config/core/logging.py,sha256=xC2-llbxWjLiIgUbO_j_728GyQumffu8g270Lx5IukU,4742
|
|
20
|
+
audex/config/core/session.py,sha256=aH4d3yT4CV4gs0ZvAzT2UQPzSY6eUv0cdMhFbl_7PWk,281
|
|
21
|
+
audex/config/helper/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
22
|
+
audex/config/helper/client/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
23
|
+
audex/config/helper/client/http.py,sha256=up84q6NSNCd9c1lJk9c9OfLBZvCvvfspimYXZN6DfhQ,777
|
|
24
|
+
audex/config/helper/client/websocket.py,sha256=GA57QDz4-hzzvYRzPLXIsKeTXRr3CAfxg19HwbJxvVg,571
|
|
25
|
+
audex/config/helper/provider/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
26
|
+
audex/config/helper/provider/dashscope.py,sha256=avEuZ-UqGtvJoaGCOvZECcLF7XvMn-_81xZp0w1O_0U,357
|
|
27
|
+
audex/config/helper/provider/unisound.py,sha256=O05U5ydBXqsZb5Fda8f5Oipb9pCykxLMXUlw0VF02qQ,436
|
|
28
|
+
audex/config/helper/provider/xfyun.py,sha256=1x13yAROqkxCi6kidUcPDlGqHdls2dW1rKVTnRXj8do,657
|
|
29
|
+
audex/config/infrastructure/__init__.py,sha256=Nl1uhj83xExm5OFkJ4iscMKDReJqiNwesfrwBNDMC4M,886
|
|
30
|
+
audex/config/infrastructure/cache.py,sha256=91QtOwM0QFQZOFAhIQfm9rRBfzF1wDvYDejJZuuH-e0,1307
|
|
31
|
+
audex/config/infrastructure/database.py,sha256=tYnsPVSscq8QP0xHMFeG0vKhhe2xBst2_B949x30oPM,1409
|
|
32
|
+
audex/config/infrastructure/recorder.py,sha256=ZbcXKJhzGJUc07bZFvI6_HzZD4ElqT18kY5s9nUs3pc,768
|
|
33
|
+
audex/config/infrastructure/store.py,sha256=939X2O3jhK8ccVXCR7kWyqaUHs_FpsZ58n6-40u7R1w,534
|
|
34
|
+
audex/config/provider/__init__.py,sha256=7d5KoAJJtjcen1qD3ISfnmTK-0nHRQjz8106CSQ2xgo,557
|
|
35
|
+
audex/config/provider/transcription.py,sha256=HR1c-kmDV28EYnXVSfmuI5ESdPmVteI0LzV_nEbPAIw,3341
|
|
36
|
+
audex/config/provider/vpr.py,sha256=CA3ROJ2IU1JXdYe7TGIhWW7YyuFjtH4fNHua80-lb5Q,3097
|
|
37
|
+
audex/container.py,sha256=YrIQKlICWOAztzztc9PlXGd-pYNuz1V5RdgENiibdFY,1204
|
|
38
|
+
audex/entity/__init__.py,sha256=KVbHxeRdu4pCp_fO0L9qfmYdh5gxoyq4uGyW-ZU0UAo,15282
|
|
39
|
+
audex/entity/doctor.py,sha256=5rZ_JLAGHcRfdjrs2_2rUGDynCCu6r9yPYR8BjF36KU,3837
|
|
40
|
+
audex/entity/doctor.pyi,sha256=oEr8rpfsTlifNdwADi4wru-pDMMq9bFMU1Lfof5Dadw,1463
|
|
41
|
+
audex/entity/fields.py,sha256=qg4svnugLkBzn473p0T8yrAGt3HKBNPm3kraQre4l0E,11257
|
|
42
|
+
audex/entity/segment.py,sha256=MYdRKeL4sUs7OM1BO3wjkdYx-M9Lmu4i8LzROAbrQ7I,3954
|
|
43
|
+
audex/entity/segment.pyi,sha256=53--qpu71QmwiY3N0wHLjCT_hgY5L3r4apn77NrQLCY,1069
|
|
44
|
+
audex/entity/session.py,sha256=v-Hb7XzAUTaFzwteAzJoPMZ1fY_3bFVoGAnNl6nO1pU,4743
|
|
45
|
+
audex/entity/session.pyi,sha256=DsEWzMawULKDTq6VFmug881O6TDQkRWUeSyMGkGyxy0,1449
|
|
46
|
+
audex/entity/utterance.py,sha256=lQhJ4UXIMrUSj3Che4Cce1GpdewrDL5fZU3-MpXaxUM,4961
|
|
47
|
+
audex/entity/utterance.pyi,sha256=9W714eUSMRdICij8ZzJPbw4LLJO1vWYQLQdPcBIHFr4,1275
|
|
48
|
+
audex/entity/vp.py,sha256=LhR-4UX3zO42NkWdKJvhETeO0tot8K4uWHsAJfO8FyQ,2785
|
|
49
|
+
audex/entity/vp.pyi,sha256=YUr9Gw4-8JAz7e7UQQpR4y6vREeOONS_69dyBmtM5js,870
|
|
50
|
+
audex/exceptions.py,sha256=_POhVngp1aQRt-2Inkc02H1sAxPGCXW2leS5Hk8dJhA,5307
|
|
51
|
+
audex/filters/__init__.py,sha256=j4ViGJO9Nv0M2i_uYDNNiO7llh9TZ6_tyuvulMasi4Y,23788
|
|
52
|
+
audex/filters/generated/__init__.py,sha256=t8vGHlenZTxoc-FLjknuMFVZSDYLqI8aar5HMRSZV_M,1120
|
|
53
|
+
audex/filters/generated/doctor.py,sha256=FD_T9COc5HUL1qhKsIfvrGvS-JX1lh8qvcH-HU404vQ,33452
|
|
54
|
+
audex/filters/generated/segment.py,sha256=Y_-HDOYFOYRX5FdRqGU5CG3DHvG6Zl1FmJrFqwYO6SQ,24473
|
|
55
|
+
audex/filters/generated/session.py,sha256=KNSZ2JsbKGpilAQnhu1HS43SsLIbhiORZka0jXfMp58,33753
|
|
56
|
+
audex/filters/generated/utterance.py,sha256=K8mtvrAEOrl0qs5fGsPxJ1eZ0-14CgjaF5tz8fb126A,32140
|
|
57
|
+
audex/filters/generated/vp.py,sha256=DMB0d4wt-G0APb_7fFXbSYpGQeifZYcbnYgR1yU4XSM,26514
|
|
58
|
+
audex/helper/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
59
|
+
audex/helper/hash.py,sha256=eIAk602IIY4oSBY7FawQRICTckgkS7bSNGqwnDtBTeQ,713
|
|
60
|
+
audex/helper/mixin.py,sha256=zutUi3v3emp3TCuishyIf-j8kXhiSniwf29-cfm-RAU,1547
|
|
61
|
+
audex/helper/net.py,sha256=QwS1fn5-yhgKaqST6rTKGgakS0zf-wMSI6sXtye2gLE,436
|
|
62
|
+
audex/helper/settings/__init__.py,sha256=vuFyxxQgUIFM62XFkBfpwUsPRgwT-M60bJznLzhsQ58,30266
|
|
63
|
+
audex/helper/settings/fields.py,sha256=bPqjKE80HpUxxZD5vnwOWpXLSBB1HnepDHaKvuh4hDA,11868
|
|
64
|
+
audex/helper/stream.py,sha256=SNRoRuRPf0uCOaOnEHZVYGafkI6UV9WiBOYhcOL-ndY,4833
|
|
65
|
+
audex/injectors/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
66
|
+
audex/injectors/config.py,sha256=dnAcoD8W6v7LLt-CNAkttuCca0mBWMOZ48Jkvw7R1QQ,258
|
|
67
|
+
audex/injectors/lifespan.py,sha256=lZR7VYQfj6ZHBDPfNc09o_ncak5Kw0MjbZDpb1frwcg,142
|
|
68
|
+
audex/lib/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
69
|
+
audex/lib/cache/__init__.py,sha256=V_TJvMv9K5j3qSaCcHbZQwIu6AhlvL7bmaC3TyBtTgc,10240
|
|
70
|
+
audex/lib/cache/inmemory.py,sha256=y5dSKL22h1dEwMNVB7wg8BHCdUMfOAbKmhs0dpo1Pqk,19856
|
|
71
|
+
audex/lib/database/__init__.py,sha256=6YdGMXuzbpxkd_nqN_LG2oC-gHq4ppgLam7h2PwraAk,2358
|
|
72
|
+
audex/lib/database/sqlite.py,sha256=wfHqLZzsTiyjAv2meoJTmsUvB56EVkRQL-be_PArIK4,13737
|
|
73
|
+
audex/lib/exporter.py,sha256=dI4SKwRBdR9jAkhv6iyHwb3-ts_QP_YNPETy5tmgltE,7538
|
|
74
|
+
audex/lib/injectors/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
75
|
+
audex/lib/injectors/cache.py,sha256=mn1g1sQ8EFyrHPPCWqaHTw9LYIepxaQNoYAvJoMU058,781
|
|
76
|
+
audex/lib/injectors/container.py,sha256=LQ_uArxRCewIkizlOYxA0HKALp7ZUfqUoGmCfkx1Fvo,1931
|
|
77
|
+
audex/lib/injectors/exporter.py,sha256=o7BGdvVR71EUyEJbDMl5Mf1DTPJYZSB3VFuIVINXEBs,707
|
|
78
|
+
audex/lib/injectors/recorder.py,sha256=xdVBQG-oeD7UUEUTuBecPmld4naoDjSKBdsqP1xzh_U,977
|
|
79
|
+
audex/lib/injectors/server.py,sha256=W7GKOifxPLHtD5PLiJZJ5rFsaNLgd-dOV2HWkAvKxx0,410
|
|
80
|
+
audex/lib/injectors/session.py,sha256=qsw7EyN48sBNQzWnjITmDGjZan1L8FNPIZpjYvfsUPE,439
|
|
81
|
+
audex/lib/injectors/sqlite.py,sha256=FW8y9eZ3tEXBkeAeRGHZycnwtPLm09lAtPEAqyOlTSA,826
|
|
82
|
+
audex/lib/injectors/store.py,sha256=zOiqbF4UvivzN5tOkILc1He23eSC-Tyloyq9lDoapuw,315
|
|
83
|
+
audex/lib/injectors/transcription.py,sha256=ydHPAhj1bxw6xnGSGrQMHGYtanHbfs8Feox8Ug8eJ28,2180
|
|
84
|
+
audex/lib/injectors/usb.py,sha256=kcn9QuCTD4mcOJ3XD4E7tUMQYeextGBhWo4XgPNAgi8,223
|
|
85
|
+
audex/lib/injectors/vpr.py,sha256=46hhnmDJsKBPAd0EU8Pweb-C-DHZ-SE86pQmvVWCG4Y,2573
|
|
86
|
+
audex/lib/injectors/wifi.py,sha256=TyOyOo0716fzGaQ9NyQhcyXqCWhUqwnSq5wJXZmPTco,142
|
|
87
|
+
audex/lib/recorder.py,sha256=Qn94FgRyUKM8JR8xFZFttNFAAmTsxjS6oEQeJ9949Cs,27782
|
|
88
|
+
audex/lib/repos/__init__.py,sha256=8wL7asYcv3Zb_bwI7MMCuYLxEm_2LY0pgB9NlNOlXLI,4477
|
|
89
|
+
audex/lib/repos/container.py,sha256=LUy0HRk5pJDbAPCInv4vPePFIADiTlj0o9EoY0pyN_k,904
|
|
90
|
+
audex/lib/repos/database/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
91
|
+
audex/lib/repos/database/sqlite.py,sha256=g15qto6eVTMBOXv9P4HX3BnsgzSJc6d7m8C-KfCfEkc,24823
|
|
92
|
+
audex/lib/repos/decorators.py,sha256=5R9zScKAbvE7g2FjvX4m2OZRczgV36Cql_DDOxQ_lKM,2350
|
|
93
|
+
audex/lib/repos/doctor.py,sha256=EUnclK4p9gBXc5lnQWsbCCpatV_pDA0ZXuyaQ6_NCl0,9189
|
|
94
|
+
audex/lib/repos/segment.py,sha256=3vBhA_3YFmjh8Gg81spe5al5gzM8_c-l_vmxBp0A-4g,9965
|
|
95
|
+
audex/lib/repos/session.py,sha256=TjDvUaDawvXNz1-MjwugwoqUlgdKRjQu92RQtvxLd1I,9273
|
|
96
|
+
audex/lib/repos/tables/__init__.py,sha256=YEu3eHnbEAcet-G2uVvO7LdsFCEbSm6-q-efvlpBqFw,1927
|
|
97
|
+
audex/lib/repos/tables/doctor.py,sha256=i92NA89b9mQ6qB9IEDGlKOmp1UFgq2mWwiAXc4JaGzI,4120
|
|
98
|
+
audex/lib/repos/tables/segment.py,sha256=01i7kSZ78E2_yduY9frb56GcUeQ0DjhJIvWaWVewVuU,3112
|
|
99
|
+
audex/lib/repos/tables/session.py,sha256=dHlHgWOdywg2-5d7eOjhxXaitSk-JJ9yHn7KqmSlTHo,4274
|
|
100
|
+
audex/lib/repos/tables/utterance.py,sha256=f6rv1Dcxo0OD8zlueiLA5ItOeFFFLX8V5z87FhqJ32w,3914
|
|
101
|
+
audex/lib/repos/tables/vp.py,sha256=lMFVMQgjz7WXARMFCa2GeFM_0L6iod7HFj1B6dj7glw,3053
|
|
102
|
+
audex/lib/repos/utterance.py,sha256=sY8N7Oa3sdZkznvcAuW-TmuCRqh_gIuKzBQKB4h92fo,9524
|
|
103
|
+
audex/lib/repos/vp.py,sha256=S2NF25ajndfULV0vSE3dFYOHfSM5J36hZpz57SDMtGw,9232
|
|
104
|
+
audex/lib/restful.py,sha256=j6JlBPC0TE3pEWILzfM6RG5nW530HyQPXc3GaHNd5Dc,8323
|
|
105
|
+
audex/lib/server/__init__.py,sha256=lz-GLqW4eYH7YQj6NeZTXISOhrM33UGNF5WpZcLLdtw,3138
|
|
106
|
+
audex/lib/server/auth.py,sha256=djpCFIXPRqj5KZGTJv_EEf-h7rDg97hBQIyo_eJ1v_s,3532
|
|
107
|
+
audex/lib/server/handlers.py,sha256=3nqdcH6lMffn6KRJit54iWU2z_lgErUIC9sN8ribl2o,8841
|
|
108
|
+
audex/lib/server/templates/index.html.j2,sha256=7ZX5WejQOXLzwyztCWl1Ei3H2n4xpftKKNQOsmkvX0Q,8890
|
|
109
|
+
audex/lib/server/templates/login.html.j2,sha256=LLi9_6OGkw9IiCf0aQfI8tNb1pbgeY12OgC0bQEe8F8,3762
|
|
110
|
+
audex/lib/server/templates/static/script.js,sha256=z7iAssTvDz2jfojiiGY4jPMX3wt5hhSSx5StO-Weu2w,1457
|
|
111
|
+
audex/lib/server/templates/static/style.css,sha256=h0M4AeT8Gy03ogvdh77u4lmMBJHpihoFwKk-BfgoWr0,10875
|
|
112
|
+
audex/lib/server/types.py,sha256=cwyFVeEtc8m6W_ViAjIDQ3JNRBeKUGf3ACXmq-0DL2U,2284
|
|
113
|
+
audex/lib/session.py,sha256=ABlhytPNwO2p2kPrBxPsOMSLZoGlL8psGeTnc31-QSQ,15651
|
|
114
|
+
audex/lib/store/__init__.py,sha256=YHU32L92lvzpALXlSr06ClNgoX1yup02p3EimFa7n1Y,6572
|
|
115
|
+
audex/lib/store/localfile.py,sha256=QHqSJFyq7BWbBJNkpG91LnPbW6iuw5bnF3gGCSEKzLI,12403
|
|
116
|
+
audex/lib/transcription/__init__.py,sha256=UdYsLgZ6fLWf8mPpczWiE6U6oq4PBYXZwAF43iTq6-E,833
|
|
117
|
+
audex/lib/transcription/dashscope.py,sha256=dQvND5QKC-RMr9rX6bWQjCcl60RvEybGyEVHAFl8YBA,19334
|
|
118
|
+
audex/lib/transcription/events.py,sha256=AnnmUmJCu-P1mpWTcsUOKvt1gGk4HA5VQKOgTgDCZfI,1808
|
|
119
|
+
audex/lib/usb.py,sha256=VsKViR6DWAMIv4oSSmPyPGt4eyACPLgpPLRSYVmYerQ,18746
|
|
120
|
+
audex/lib/vpr/__init__.py,sha256=u_Mt8kKRl0p72uFpT5iOF9cwqd4NOeId4qZi4uiSC7k,972
|
|
121
|
+
audex/lib/vpr/unisound/__init__.py,sha256=AXGxUB9qER4NqZ9hj8wMtd9w9iLekDnsIIxMhxZTR6Y,6347
|
|
122
|
+
audex/lib/vpr/unisound/types.py,sha256=3AXfSwy0yHxyuE5aWT-_ebnYGzLm9famw9ROvNR66ZM,11402
|
|
123
|
+
audex/lib/vpr/xfyun/__init__.py,sha256=NoxKZeVihLLoyqx3kNURD8UuKReCNWgAtDU2NIUc2cg,19784
|
|
124
|
+
audex/lib/vpr/xfyun/types.py,sha256=ui8ZrCEDSrRWs9eEUz6aT_TttM6muPyJhKj1vDOTH_E,18058
|
|
125
|
+
audex/lib/websocket/__init__.py,sha256=UbaZHQv92IStnr06fI8lUFpnlTHLVMDGqLUzIdezz6o,196
|
|
126
|
+
audex/lib/websocket/connection.py,sha256=lMJ4rn72VN-Nwr9ZNluUCq8Tk349bnDDwsTtLTeQq5M,16916
|
|
127
|
+
audex/lib/websocket/pool.py,sha256=3zGsndyh4mtJTBc7E50Xg4knaMFadEHOo5_NMJ_Xq5c,37708
|
|
128
|
+
audex/lib/wifi.py,sha256=Qtv4reG4Loix7vKXb_DJx6rS-04Jhgj9j1nRXXVYWTE,39755
|
|
129
|
+
audex/lifespan.py,sha256=Hnuod-cfDuOeayRBEWPDq3zHPFAksKX3XrpyAElQppo,2512
|
|
130
|
+
audex/service/__init__.py,sha256=snlLHZKBV53IONhwFvAtCvUTlg0hMtjajx-OW0HKqug,744
|
|
131
|
+
audex/service/decorators.py,sha256=vUO_d6otWNIfwTCgVYJEuPw_lGGD-PnQY8F2kpivuog,2604
|
|
132
|
+
audex/service/doctor/__init__.py,sha256=UwjSdVp1_ik5q7R7wf8M_9f336D0abMCveMJZC5TASQ,23343
|
|
133
|
+
audex/service/doctor/const.py,sha256=ZcmHndZKhOw6zWzT0LT98CJUWwMZPv9MoOjo2pt_O_I,1164
|
|
134
|
+
audex/service/doctor/exceptions.py,sha256=6GwO6QduzeYb_Zq6i-j7rU9Z9f0q2xlB6mpSfRH69nE,2684
|
|
135
|
+
audex/service/doctor/types.py,sha256=VSKFBcdE4e2OgEMgU9P9Xu1xlG66hEb1ns1ePs8jWl0,1244
|
|
136
|
+
audex/service/export/__init__.py,sha256=cnzoxYL6cVmE1kTrgysF3S5ReYKbflnUDAvpFUa0HDI,8071
|
|
137
|
+
audex/service/export/const.py,sha256=G91IR1W1oLLiRNgqvdMOdPH3mIEHgcJRHkjhoYjtiDs,503
|
|
138
|
+
audex/service/export/exceptions.py,sha256=3uQtr9vIvj9dxscWPgrsCyfKykpJ-4oPMVJ1fBoGz9s,856
|
|
139
|
+
audex/service/export/types.py,sha256=RF6FJoxfIX2RVqqQi457jjJe3Sflv4MxnF3nc9t0ZrU,345
|
|
140
|
+
audex/service/injectors/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
141
|
+
audex/service/injectors/container.py,sha256=4Sc0BGJfBMIacJ7jzjRDhVmI6Ae3yv82oTFYdWbDvvY,1746
|
|
142
|
+
audex/service/injectors/doctor.py,sha256=C34x5od0eMEPgFXBBN4ZE96u3GzmNW622AziMnEkPFM,1011
|
|
143
|
+
audex/service/injectors/export.py,sha256=JpOXe9ZYrcL22ohI0O8dy9mydIk1PYJmy020ood8bYI,727
|
|
144
|
+
audex/service/injectors/session.py,sha256=h8hGd2Y3T-q1hoVP7a2Y2qVJ5Fqv6PA6e3iRyoTCVWQ,1693
|
|
145
|
+
audex/service/session/__init__.py,sha256=ommXeVYUdcFHg7tK-BhD69DBnN27cxSOGGe3YnFrfK0,29063
|
|
146
|
+
audex/service/session/const.py,sha256=8k5MfPqjjKIjHdN2UWkn3EX9WJY-u_U4b5qpJVzZB0M,1167
|
|
147
|
+
audex/service/session/exceptions.py,sha256=GciEQeCuPhkHZIH1Vfi70Z8gE2GKy2tbNtbTEKdTyIs,1992
|
|
148
|
+
audex/service/session/types.py,sha256=MZ0Jqiub8treRxCN7AozaOb2xg9TrRwFAeEKRL53KrM,2354
|
|
149
|
+
audex/types.py,sha256=UXLK_mm_JTW3wLqdPM8mwpR3MIL3kUafkhC9tl6rqfg,856
|
|
150
|
+
audex/utils.py,sha256=_fmpBtw9L3CvYhAqC7udwbuJZC6SsV_4SkVWo-04NTY,8519
|
|
151
|
+
audex/valueobj/__init__.py,sha256=cNN4I14VO5efS4t-Pu9oDfcfK5uPvfOFABvF6vjM_dU,2227
|
|
152
|
+
audex/valueobj/common/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
153
|
+
audex/valueobj/common/auth.py,sha256=2e1VNRZj-XMsZoBLxkG4r4ibNXv3xPFL8GD426jjMIU,2616
|
|
154
|
+
audex/valueobj/common/email.py,sha256=Nflg6tmS142FF5QsWZoXCWiECD3gib55988iYy_d5Zo,362
|
|
155
|
+
audex/valueobj/common/ops.py,sha256=KC83txOD-0nVJJkQg69wJjyPVWWzkMj4eNpcUsNNvjQ,358
|
|
156
|
+
audex/valueobj/common/phone.py,sha256=6DyU-XBqvEfyadjZ7FhDBaNOjTkVr-YVeJkCrpuFj-0,2458
|
|
157
|
+
audex/valueobj/common/version.py,sha256=EFhgYlB8Wi0DbTLjHkJ4zbjkLhAHYEA24RLw9Meg5a0,1899
|
|
158
|
+
audex/valueobj/session.py,sha256=RsX9BOQxC-9BGjScs_fD4q4i8_TRyu_7meXHpswwi2A,531
|
|
159
|
+
audex/valueobj/utterance.py,sha256=9dfP1pewhTXRfQjHl5c5MEsgPr8dBUsCZX66N5xHd8M,388
|
|
160
|
+
audex/view/__init__.py,sha256=sTNx7dUHdzbZNZ-JvYDi8gsbM_gGeWZaf2ST_C1uvo4,1609
|
|
161
|
+
audex/view/container.py,sha256=24rDRPejmJkBwT1om04Fr8YWfLJTVexcOQHGv7AfYFY,525
|
|
162
|
+
audex/view/decorators.py,sha256=_pJcfEqGqDWv7ri-0Ua2_EuRNFeq-Zk8groACiaRMBo,10128
|
|
163
|
+
audex/view/pages/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
164
|
+
audex/view/pages/dashboard/__init__.py,sha256=4jz4dbwVIx3rc13fSfA3p0SHr8Sngf6nBiXpc7HvIQs,12162
|
|
165
|
+
audex/view/pages/dashboard/wifi.py,sha256=7ZeS_QSDNVGCUo1xanpWcjoXhMp4inVLuB-TxoQ-UfU,16981
|
|
166
|
+
audex/view/pages/login.py,sha256=ef48-TfYVxFkmkptmM96qBbZIo_93A1TJdaokAC-yW0,3817
|
|
167
|
+
audex/view/pages/recording.py,sha256=CwD_Z8pSE-68ZO2IZBcOHPyR3RQS0zs_TM5X4hfmGvU,13759
|
|
168
|
+
audex/view/pages/register.py,sha256=a6HbmDdOht-91gPp6gcvYqd-dBCdqdynEwf0aYiRF4o,7150
|
|
169
|
+
audex/view/pages/sessions/__init__.py,sha256=iMW9RrP9H02MFaBCQbC5B_lM7n2RloqtfLsosKahrnI,8750
|
|
170
|
+
audex/view/pages/sessions/details.py,sha256=CjL5bKeocNJxvimaJwJraa-_KkN5Tegvn0A66nnM1fU,9985
|
|
171
|
+
audex/view/pages/sessions/export.py,sha256=EPZ2CCXeq9713dIVpoM7gfSc6nK8rsxKr8JVAmpJg44,19802
|
|
172
|
+
audex/view/pages/settings.py,sha256=ibbIJmYMw0-_pYOAf1St56jzWZeEOzxh1ddXiGaQuiw,17096
|
|
173
|
+
audex/view/pages/voiceprint/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
174
|
+
audex/view/pages/voiceprint/enroll.py,sha256=10LW8AfChJo9yxc1ia70FECs5cDfdOMaVN5uOFNeSwA,7999
|
|
175
|
+
audex/view/pages/voiceprint/update.py,sha256=Pd279MdGtNLygdntbPPiW1gFX9TvgmKyXLEx9cpN0h4,7949
|
|
176
|
+
audex/view/static/css/dashboard.css,sha256=ZvmVbHZgwwVp0c2WuQ1mFjARYVrRDd-QzneWkXuYfCU,10589
|
|
177
|
+
audex/view/static/css/glass.css,sha256=-HD1h1RPEF2bmTtRZYCFD7SHxdQslhEdny31R9nNDwU,712
|
|
178
|
+
audex/view/static/css/global.css,sha256=perw7tOjAP0GYuflgQV9Y2DSiuvuAWjJaDc67VdEiCo,5744
|
|
179
|
+
audex/view/static/css/login.css,sha256=pncF2RnJR1lz-mPeWnVvhi7k-KU_YMhyatlY3h7kmT8,8023
|
|
180
|
+
audex/view/static/css/recording.css,sha256=0PBmep5G0iyBOROXHE8vNdnZEXnhG1_WU7vrasWmEjs,9713
|
|
181
|
+
audex/view/static/css/register.css,sha256=xzJjZnyzJ8BW59VU0wc0fSZRKwkcII9Cn2_XsoMV2xE,6330
|
|
182
|
+
audex/view/static/css/sessions/styles.css,sha256=10LN68busSJwmVw-MZUmOlJR1urrLF9fwh_hkpEsA2g,11212
|
|
183
|
+
audex/view/static/css/settings.css,sha256=qLy92x2DLVdTmTO5N74cZe6vLh1SJORJftm0Xmkzj2A,4657
|
|
184
|
+
audex/view/static/css/voiceprint/enroll.css,sha256=soZcqUGCb2gW-3Ba8V-XlWvZBZRNjivtvL4yMlDc6uI,1520
|
|
185
|
+
audex/view/static/css/voiceprint/styles.css,sha256=c4v3SIwA4CQGOx-3JpXuLo7VvJvaT1SYdvULVn7VIFs,4841
|
|
186
|
+
audex/view/static/css/voiceprint/update.css,sha256=I4ZGl8fwWC1E9RQLWbKRp5RQSqxad-WoqvGftb9wx1E,1529
|
|
187
|
+
audex/view/static/images/logo.svg,sha256=OLwNJBqQhYU2LZVFYFfGFrxIrrw5mFC1Nb1IPeICmAs,2814
|
|
188
|
+
audex/view/static/js/recording.js,sha256=BnTsSBKI8V-QXmE2nO2xVzxdM5iX_UkFOyTzjSDdnp0,1129
|
|
189
|
+
audex-1.0.7a3.dist-info/METADATA,sha256=ZqzONr5P1S9x4LUTUANWJ52PsBnjMaITOiJEHVAArrI,8464
|
|
190
|
+
audex-1.0.7a3.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
191
|
+
audex-1.0.7a3.dist-info/entry_points.txt,sha256=4rOzGKy4Ubm8oEBToehsfWpGr4SjVj3gM6fMKTm4XDk,39
|
|
192
|
+
audex-1.0.7a3.dist-info/RECORD,,
|