tidalamp 0.1.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.
- tidalamp-0.1.0/.gitignore +94 -0
- tidalamp-0.1.0/LICENSE +674 -0
- tidalamp-0.1.0/PKG-INFO +693 -0
- tidalamp-0.1.0/README.md +654 -0
- tidalamp-0.1.0/packaging/README.md +96 -0
- tidalamp-0.1.0/packaging/aur/.SRCINFO +25 -0
- tidalamp-0.1.0/packaging/aur/PKGBUILD +48 -0
- tidalamp-0.1.0/packaging/tidalamp.desktop +15 -0
- tidalamp-0.1.0/packaging/tidalamp.svg +23 -0
- tidalamp-0.1.0/publish.md +671 -0
- tidalamp-0.1.0/pyproject.toml +123 -0
- tidalamp-0.1.0/tests/conftest.py +100 -0
- tidalamp-0.1.0/tests/fake_cava.py +35 -0
- tidalamp-0.1.0/tests/fake_mpv.py +120 -0
- tidalamp-0.1.0/tests/test_about.py +100 -0
- tidalamp-0.1.0/tests/test_app.py +2421 -0
- tidalamp-0.1.0/tests/test_artwork.py +289 -0
- tidalamp-0.1.0/tests/test_audio.py +194 -0
- tidalamp-0.1.0/tests/test_auth.py +164 -0
- tidalamp-0.1.0/tests/test_cli.py +117 -0
- tidalamp-0.1.0/tests/test_config.py +302 -0
- tidalamp-0.1.0/tests/test_i18n.py +99 -0
- tidalamp-0.1.0/tests/test_library.py +534 -0
- tidalamp-0.1.0/tests/test_lyrics.py +107 -0
- tidalamp-0.1.0/tests/test_mpris.py +489 -0
- tidalamp-0.1.0/tests/test_net.py +73 -0
- tidalamp-0.1.0/tests/test_player.py +145 -0
- tidalamp-0.1.0/tests/test_queue.py +286 -0
- tidalamp-0.1.0/tests/test_settings.py +105 -0
- tidalamp-0.1.0/tests/test_spectrum.py +122 -0
- tidalamp-0.1.0/tests/test_stream.py +232 -0
- tidalamp-0.1.0/tests/test_theme.py +132 -0
- tidalamp-0.1.0/tests/test_widgets.py +320 -0
- tidalamp-0.1.0/tidalamp/__init__.py +17 -0
- tidalamp-0.1.0/tidalamp/about.py +202 -0
- tidalamp-0.1.0/tidalamp/app.py +1545 -0
- tidalamp-0.1.0/tidalamp/artwork.py +365 -0
- tidalamp-0.1.0/tidalamp/audio.py +205 -0
- tidalamp-0.1.0/tidalamp/auth.py +149 -0
- tidalamp-0.1.0/tidalamp/cli.py +138 -0
- tidalamp-0.1.0/tidalamp/columns.py +87 -0
- tidalamp-0.1.0/tidalamp/config.py +268 -0
- tidalamp-0.1.0/tidalamp/i18n.py +592 -0
- tidalamp-0.1.0/tidalamp/library.py +430 -0
- tidalamp-0.1.0/tidalamp/lyrics.py +112 -0
- tidalamp-0.1.0/tidalamp/mpris.py +409 -0
- tidalamp-0.1.0/tidalamp/net.py +47 -0
- tidalamp-0.1.0/tidalamp/player.py +254 -0
- tidalamp-0.1.0/tidalamp/queue.py +378 -0
- tidalamp-0.1.0/tidalamp/screens.py +1385 -0
- tidalamp-0.1.0/tidalamp/settings.py +101 -0
- tidalamp-0.1.0/tidalamp/spectrum.py +124 -0
- tidalamp-0.1.0/tidalamp/stream.py +200 -0
- tidalamp-0.1.0/tidalamp/theme.py +283 -0
- tidalamp-0.1.0/tidalamp/widgets.py +468 -0
- tidalamp-0.1.0/tidalamp/winamp.tcss +596 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.egg-info/
|
|
4
|
+
dist/
|
|
5
|
+
|
|
6
|
+
# makepkg
|
|
7
|
+
packaging/aur/src/
|
|
8
|
+
packaging/aur/pkg/
|
|
9
|
+
packaging/aur/*.tar.gz
|
|
10
|
+
packaging/aur/*.pkg.tar.zst
|
|
11
|
+
|
|
12
|
+
# Python bytecode and compiled extensions
|
|
13
|
+
*.py[cod]
|
|
14
|
+
*$py.class
|
|
15
|
+
*.so
|
|
16
|
+
|
|
17
|
+
# Virtual environments
|
|
18
|
+
venv/
|
|
19
|
+
env/
|
|
20
|
+
ENV/
|
|
21
|
+
.env/
|
|
22
|
+
.venv
|
|
23
|
+
|
|
24
|
+
# Packaging and build artifacts
|
|
25
|
+
build/
|
|
26
|
+
develop-eggs/
|
|
27
|
+
.eggs/
|
|
28
|
+
*.egg
|
|
29
|
+
*.whl
|
|
30
|
+
pip-wheel-metadata/
|
|
31
|
+
share/python-wheels/
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Test, coverage and type-checker artifacts
|
|
36
|
+
.pytest_cache/
|
|
37
|
+
.tox/
|
|
38
|
+
.nox/
|
|
39
|
+
.coverage
|
|
40
|
+
.coverage.*
|
|
41
|
+
coverage.xml
|
|
42
|
+
htmlcov/
|
|
43
|
+
.mypy_cache/
|
|
44
|
+
.pyre/
|
|
45
|
+
.pytype/
|
|
46
|
+
|
|
47
|
+
# Linters and formatters
|
|
48
|
+
.ruff_cache/
|
|
49
|
+
|
|
50
|
+
# Jupyter notebooks
|
|
51
|
+
.ipynb_checkpoints/
|
|
52
|
+
|
|
53
|
+
# Local environment files and secrets
|
|
54
|
+
.env
|
|
55
|
+
.env.*
|
|
56
|
+
!.env.example
|
|
57
|
+
|
|
58
|
+
# AI coding agents and assistants
|
|
59
|
+
.agents/
|
|
60
|
+
.aider*
|
|
61
|
+
.amazonq/
|
|
62
|
+
.amp/
|
|
63
|
+
.augment/
|
|
64
|
+
.avante/
|
|
65
|
+
.bolt/
|
|
66
|
+
.claude/
|
|
67
|
+
.codeium/
|
|
68
|
+
.codex/
|
|
69
|
+
.continue/
|
|
70
|
+
.cursor/
|
|
71
|
+
.cursorignore
|
|
72
|
+
.cursorrules
|
|
73
|
+
.factory/
|
|
74
|
+
.gemini/
|
|
75
|
+
.goose/
|
|
76
|
+
.junie/
|
|
77
|
+
.kiro/
|
|
78
|
+
.mentat/
|
|
79
|
+
.opencode/
|
|
80
|
+
.plandex/
|
|
81
|
+
.qodo/
|
|
82
|
+
.roo/
|
|
83
|
+
.smol-ai/
|
|
84
|
+
.sweep/
|
|
85
|
+
.trae/
|
|
86
|
+
.windsurf/
|
|
87
|
+
|
|
88
|
+
# AI agent instructions and Copilot configuration
|
|
89
|
+
AGENTS.md
|
|
90
|
+
CLAUDE.md
|
|
91
|
+
GEMINI.md
|
|
92
|
+
skills-lock.json
|
|
93
|
+
.github/copilot-instructions.md
|
|
94
|
+
.github/instructions/
|