synciflow-demo 1.0.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.
Files changed (49) hide show
  1. synciflow_demo-1.0.0/.gitignore +87 -0
  2. synciflow_demo-1.0.0/LICENSE +21 -0
  3. synciflow_demo-1.0.0/PKG-INFO +693 -0
  4. synciflow_demo-1.0.0/README.md +658 -0
  5. synciflow_demo-1.0.0/pyproject.toml +97 -0
  6. synciflow_demo-1.0.0/src/synciflow/__init__.py +8 -0
  7. synciflow_demo-1.0.0/src/synciflow/api/__init__.py +2 -0
  8. synciflow_demo-1.0.0/src/synciflow/api/server.py +824 -0
  9. synciflow_demo-1.0.0/src/synciflow/auth/__init__.py +6 -0
  10. synciflow_demo-1.0.0/src/synciflow/auth/config.py +75 -0
  11. synciflow_demo-1.0.0/src/synciflow/auth/dependencies.py +55 -0
  12. synciflow_demo-1.0.0/src/synciflow/auth/router.py +172 -0
  13. synciflow_demo-1.0.0/src/synciflow/auth/schemas.py +44 -0
  14. synciflow_demo-1.0.0/src/synciflow/cli/__init__.py +2 -0
  15. synciflow_demo-1.0.0/src/synciflow/cli/main.py +408 -0
  16. synciflow_demo-1.0.0/src/synciflow/cli/smart.py +537 -0
  17. synciflow_demo-1.0.0/src/synciflow/config.py +87 -0
  18. synciflow_demo-1.0.0/src/synciflow/core/__init__.py +2 -0
  19. synciflow_demo-1.0.0/src/synciflow/core/job_manager.py +123 -0
  20. synciflow_demo-1.0.0/src/synciflow/core/library_manager.py +92 -0
  21. synciflow_demo-1.0.0/src/synciflow/core/notification_bus.py +159 -0
  22. synciflow_demo-1.0.0/src/synciflow/core/playlist_manager.py +209 -0
  23. synciflow_demo-1.0.0/src/synciflow/core/sync_manager.py +216 -0
  24. synciflow_demo-1.0.0/src/synciflow/core/track_manager.py +188 -0
  25. synciflow_demo-1.0.0/src/synciflow/core/utils.py +50 -0
  26. synciflow_demo-1.0.0/src/synciflow/db/__init__.py +2 -0
  27. synciflow_demo-1.0.0/src/synciflow/db/database.py +65 -0
  28. synciflow_demo-1.0.0/src/synciflow/db/models.py +157 -0
  29. synciflow_demo-1.0.0/src/synciflow/frontend/assets/index-B9xx242h.js +317 -0
  30. synciflow_demo-1.0.0/src/synciflow/frontend/assets/index-DdSkDsA-.css +1 -0
  31. synciflow_demo-1.0.0/src/synciflow/frontend/favicon.ico +0 -0
  32. synciflow_demo-1.0.0/src/synciflow/frontend/index.html +18 -0
  33. synciflow_demo-1.0.0/src/synciflow/frontend/placeholder.svg +1 -0
  34. synciflow_demo-1.0.0/src/synciflow/scheduler/__init__.py +5 -0
  35. synciflow_demo-1.0.0/src/synciflow/scheduler/runner.py +77 -0
  36. synciflow_demo-1.0.0/src/synciflow/scheduler/tasks.py +215 -0
  37. synciflow_demo-1.0.0/src/synciflow/schemas/__init__.py +7 -0
  38. synciflow_demo-1.0.0/src/synciflow/schemas/playlist.py +17 -0
  39. synciflow_demo-1.0.0/src/synciflow/schemas/track.py +24 -0
  40. synciflow_demo-1.0.0/src/synciflow/services/__init__.py +2 -0
  41. synciflow_demo-1.0.0/src/synciflow/services/downloader.py +52 -0
  42. synciflow_demo-1.0.0/src/synciflow/services/spotify_client.py +228 -0
  43. synciflow_demo-1.0.0/src/synciflow/services/tagging.py +76 -0
  44. synciflow_demo-1.0.0/src/synciflow/services/youtube.py +281 -0
  45. synciflow_demo-1.0.0/src/synciflow/storage/__init__.py +2 -0
  46. synciflow_demo-1.0.0/src/synciflow/storage/file_manager.py +127 -0
  47. synciflow_demo-1.0.0/src/synciflow/storage/path_manager.py +46 -0
  48. synciflow_demo-1.0.0/src/synciflow/storage/playlist_metadata.py +43 -0
  49. synciflow_demo-1.0.0/src/synciflow/storage/zip_builder.py +52 -0
@@ -0,0 +1,87 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+
28
+ # Virtual environments
29
+ .venv/
30
+ venv/
31
+ ENV/
32
+ env/
33
+
34
+ # PyInstaller
35
+ *.manifest
36
+ *.spec
37
+ !synciflow.spec
38
+
39
+ # Installer logs
40
+ pip-log.txt
41
+ pip-delete-this-directory.txt
42
+
43
+ # Unit test / coverage reports
44
+ htmlcov/
45
+ .tox/
46
+ .nox/
47
+ .coverage
48
+ .coverage.*
49
+ .cache
50
+ nosetests.xml
51
+ coverage.xml
52
+ *.cover
53
+ *.py,cover
54
+ .hypothesis/
55
+ .pytest_cache/
56
+
57
+ # Jupyter Notebook
58
+ .ipynb_checkpoints
59
+
60
+ # IDEs / Editors
61
+ .vscode/
62
+ .idea/
63
+ *.swp
64
+ *.swo
65
+
66
+ # macOS
67
+ .DS_Store
68
+
69
+ # Windows
70
+ Thumbs.db
71
+ Desktop.ini
72
+
73
+ # Local config
74
+ .env
75
+ .env.*
76
+
77
+
78
+ # Downloads
79
+ downloads/
80
+
81
+ # Storage
82
+ storage_data/
83
+ data/
84
+
85
+
86
+ # node_modules
87
+ node_modules/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Adel Elawady
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.