spl-dashboard 0.5.0__tar.gz
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.
- spl_dashboard-0.5.0/.gitignore +39 -0
- spl_dashboard-0.5.0/LICENSE +674 -0
- spl_dashboard-0.5.0/PKG-INFO +77 -0
- spl_dashboard-0.5.0/README.md +39 -0
- spl_dashboard-0.5.0/pyproject.toml +94 -0
- spl_dashboard-0.5.0/src/spl_dashboard/__init__.py +3 -0
- spl_dashboard-0.5.0/src/spl_dashboard/addresses.py +56 -0
- spl_dashboard-0.5.0/src/spl_dashboard/calibration.py +131 -0
- spl_dashboard-0.5.0/src/spl_dashboard/capture.py +269 -0
- spl_dashboard-0.5.0/src/spl_dashboard/cli.py +108 -0
- spl_dashboard-0.5.0/src/spl_dashboard/dsp.py +178 -0
- spl_dashboard-0.5.0/src/spl_dashboard/main.py +401 -0
- spl_dashboard-0.5.0/src/spl_dashboard/models.py +153 -0
- spl_dashboard-0.5.0/src/spl_dashboard/runtime.py +483 -0
- spl_dashboard-0.5.0/src/spl_dashboard/spectrum.py +235 -0
- spl_dashboard-0.5.0/src/spl_dashboard/static/assets/index-4D3s-Wsb.js +15 -0
- spl_dashboard-0.5.0/src/spl_dashboard/static/assets/index-Cc6MPaAZ.css +1 -0
- spl_dashboard-0.5.0/src/spl_dashboard/static/icon.svg +1 -0
- spl_dashboard-0.5.0/src/spl_dashboard/static/index.html +24 -0
- spl_dashboard-0.5.0/src/spl_dashboard/static/manifest.webmanifest +1 -0
- spl_dashboard-0.5.0/src/spl_dashboard/storage.py +206 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.DS_Store
|
|
2
|
+
.env
|
|
3
|
+
.venv/
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.py[cod]
|
|
6
|
+
.pytest_cache/
|
|
7
|
+
.ruff_cache/
|
|
8
|
+
*.egg-info/
|
|
9
|
+
node_modules/
|
|
10
|
+
web/dist/
|
|
11
|
+
# Built UI copied into the wheel by `make ui-bundle`; regenerated, never committed.
|
|
12
|
+
server/src/spl_dashboard/static/
|
|
13
|
+
# Packaging output.
|
|
14
|
+
/dist/
|
|
15
|
+
*.tsbuildinfo
|
|
16
|
+
coverage/
|
|
17
|
+
*.sqlite3
|
|
18
|
+
logs/
|
|
19
|
+
|
|
20
|
+
# Local serial-specific microphone files
|
|
21
|
+
/UMIKCal/
|
|
22
|
+
|
|
23
|
+
# Private runtime data, credentials and local agent artifacts
|
|
24
|
+
.archon/
|
|
25
|
+
.env.*
|
|
26
|
+
!.env.example
|
|
27
|
+
*.sqlite3-*
|
|
28
|
+
*.db
|
|
29
|
+
*.db-*
|
|
30
|
+
*.pem
|
|
31
|
+
*.key
|
|
32
|
+
*.p12
|
|
33
|
+
*.pfx
|
|
34
|
+
*.wav
|
|
35
|
+
*.flac
|
|
36
|
+
*.mp3
|
|
37
|
+
.mypy_cache/
|
|
38
|
+
server/dist/
|
|
39
|
+
server/build/
|