music-explorer 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.
- music_explorer-0.1.0/LICENSE +21 -0
- music_explorer-0.1.0/PKG-INFO +122 -0
- music_explorer-0.1.0/README.md +103 -0
- music_explorer-0.1.0/music_explorer.egg-info/PKG-INFO +122 -0
- music_explorer-0.1.0/music_explorer.egg-info/SOURCES.txt +9 -0
- music_explorer-0.1.0/music_explorer.egg-info/dependency_links.txt +1 -0
- music_explorer-0.1.0/music_explorer.egg-info/entry_points.txt +2 -0
- music_explorer-0.1.0/music_explorer.egg-info/requires.txt +5 -0
- music_explorer-0.1.0/music_explorer.egg-info/top_level.txt +1 -0
- music_explorer-0.1.0/pyproject.toml +38 -0
- music_explorer-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 arkanz4idan
|
|
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.
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: music-explorer
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: a side project with simple and clean music player with Tkinter GUI and Textual TUI
|
|
5
|
+
Author-email: arkanz4idan <arkanzaidanwijayatsi@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: music,player,audio,pygame,textual
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: pygame-ce>=2.5.7
|
|
14
|
+
Requires-Dist: pydub
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: imageio-ffmpeg
|
|
17
|
+
Requires-Dist: textual>=8.2.7
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
|
|
20
|
+
# 🎵 Music Explorer
|
|
21
|
+
|
|
22
|
+
[](LICENSE)
|
|
23
|
+
[](https://www.python.org/)
|
|
24
|
+
[](requirements.txt)
|
|
25
|
+
|
|
26
|
+
A lightweight music player with both a graphical (Tkinter) and terminal (Textual) interface — fast to run, easy to extend.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## Table of contents
|
|
31
|
+
|
|
32
|
+
- [Features](#features)
|
|
33
|
+
- [Quick start](#quick-start)
|
|
34
|
+
- [Usage](#usage)
|
|
35
|
+
- [Installation](#installation)
|
|
36
|
+
- [Configuration](#configuration)
|
|
37
|
+
- [Screenshots](#screenshots)
|
|
38
|
+
- [Contributing](#contributing)
|
|
39
|
+
- [License](#license)
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Features
|
|
44
|
+
|
|
45
|
+
- ✅ Dual interfaces: GUI (Tkinter) and TUI (Textual)
|
|
46
|
+
- ✅ Supports: MP3, WAV, OGG, FLAC
|
|
47
|
+
- ✅ Shuffle and loop modes (Off / All / One)
|
|
48
|
+
- ✅ Remembers last folder, last track, and volume
|
|
49
|
+
- ✅ Persists playlist order to `queue.json`
|
|
50
|
+
- ⚡ Lightweight, minimal dependencies
|
|
51
|
+
|
|
52
|
+
## Quick start
|
|
53
|
+
|
|
54
|
+
Recommended: run inside a virtual environment.
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# run with uv (recommended)
|
|
58
|
+
uv run main.py
|
|
59
|
+
|
|
60
|
+
# or run directly with Python
|
|
61
|
+
python main.py
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Usage
|
|
65
|
+
|
|
66
|
+
On startup the program offers a choice between GUI and Terminal UI. You can force a mode:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
python main.py -t gui # GUI only
|
|
70
|
+
python main.py -t cli # Terminal only
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Installation
|
|
74
|
+
|
|
75
|
+
Create a virtual environment and install pinned dependencies:
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
python -m venv .venv
|
|
79
|
+
.venv\Scripts\activate
|
|
80
|
+
pip install -r requirements.txt
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Configuration
|
|
84
|
+
|
|
85
|
+
Settings are saved to `save.json`. Example minimal defaults you can copy into `save.json`:
|
|
86
|
+
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"current-folder": null,
|
|
90
|
+
"current-file": null,
|
|
91
|
+
"settings": {
|
|
92
|
+
"volume": 100,
|
|
93
|
+
"shuffle": false,
|
|
94
|
+
"loop": "off"
|
|
95
|
+
},
|
|
96
|
+
"queue-file": null
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Playlist order is persisted to `queue.json` inside your music folder.
|
|
101
|
+
|
|
102
|
+
## Screenshots
|
|
103
|
+
|
|
104
|
+

|
|
105
|
+
*GUI demo*
|
|
106
|
+
|
|
107
|
+

|
|
108
|
+
*Terminal demo*
|
|
109
|
+
|
|
110
|
+
## Contributing
|
|
111
|
+
|
|
112
|
+
- Open issues for bugs or ideas
|
|
113
|
+
- Send a PR with a clear description and tests where applicable
|
|
114
|
+
- Keep changes small and focused
|
|
115
|
+
|
|
116
|
+
## License
|
|
117
|
+
|
|
118
|
+
MIT — see the `LICENSE` file.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
Made with ❤️ — happy hacking!
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# 🎵 Music Explorer
|
|
2
|
+
|
|
3
|
+
[](LICENSE)
|
|
4
|
+
[](https://www.python.org/)
|
|
5
|
+
[](requirements.txt)
|
|
6
|
+
|
|
7
|
+
A lightweight music player with both a graphical (Tkinter) and terminal (Textual) interface — fast to run, easy to extend.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## Table of contents
|
|
12
|
+
|
|
13
|
+
- [Features](#features)
|
|
14
|
+
- [Quick start](#quick-start)
|
|
15
|
+
- [Usage](#usage)
|
|
16
|
+
- [Installation](#installation)
|
|
17
|
+
- [Configuration](#configuration)
|
|
18
|
+
- [Screenshots](#screenshots)
|
|
19
|
+
- [Contributing](#contributing)
|
|
20
|
+
- [License](#license)
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Features
|
|
25
|
+
|
|
26
|
+
- ✅ Dual interfaces: GUI (Tkinter) and TUI (Textual)
|
|
27
|
+
- ✅ Supports: MP3, WAV, OGG, FLAC
|
|
28
|
+
- ✅ Shuffle and loop modes (Off / All / One)
|
|
29
|
+
- ✅ Remembers last folder, last track, and volume
|
|
30
|
+
- ✅ Persists playlist order to `queue.json`
|
|
31
|
+
- ⚡ Lightweight, minimal dependencies
|
|
32
|
+
|
|
33
|
+
## Quick start
|
|
34
|
+
|
|
35
|
+
Recommended: run inside a virtual environment.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# run with uv (recommended)
|
|
39
|
+
uv run main.py
|
|
40
|
+
|
|
41
|
+
# or run directly with Python
|
|
42
|
+
python main.py
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
|
|
47
|
+
On startup the program offers a choice between GUI and Terminal UI. You can force a mode:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
python main.py -t gui # GUI only
|
|
51
|
+
python main.py -t cli # Terminal only
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
## Installation
|
|
55
|
+
|
|
56
|
+
Create a virtual environment and install pinned dependencies:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
python -m venv .venv
|
|
60
|
+
.venv\Scripts\activate
|
|
61
|
+
pip install -r requirements.txt
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Configuration
|
|
65
|
+
|
|
66
|
+
Settings are saved to `save.json`. Example minimal defaults you can copy into `save.json`:
|
|
67
|
+
|
|
68
|
+
```json
|
|
69
|
+
{
|
|
70
|
+
"current-folder": null,
|
|
71
|
+
"current-file": null,
|
|
72
|
+
"settings": {
|
|
73
|
+
"volume": 100,
|
|
74
|
+
"shuffle": false,
|
|
75
|
+
"loop": "off"
|
|
76
|
+
},
|
|
77
|
+
"queue-file": null
|
|
78
|
+
}
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Playlist order is persisted to `queue.json` inside your music folder.
|
|
82
|
+
|
|
83
|
+
## Screenshots
|
|
84
|
+
|
|
85
|
+

|
|
86
|
+
*GUI demo*
|
|
87
|
+
|
|
88
|
+

|
|
89
|
+
*Terminal demo*
|
|
90
|
+
|
|
91
|
+
## Contributing
|
|
92
|
+
|
|
93
|
+
- Open issues for bugs or ideas
|
|
94
|
+
- Send a PR with a clear description and tests where applicable
|
|
95
|
+
- Keep changes small and focused
|
|
96
|
+
|
|
97
|
+
## License
|
|
98
|
+
|
|
99
|
+
MIT — see the `LICENSE` file.
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
Made with ❤️ — happy hacking!
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: music-explorer
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: a side project with simple and clean music player with Tkinter GUI and Textual TUI
|
|
5
|
+
Author-email: arkanz4idan <arkanzaidanwijayatsi@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: music,player,audio,pygame,textual
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.12
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Requires-Dist: pygame-ce>=2.5.7
|
|
14
|
+
Requires-Dist: pydub
|
|
15
|
+
Requires-Dist: numpy
|
|
16
|
+
Requires-Dist: imageio-ffmpeg
|
|
17
|
+
Requires-Dist: textual>=8.2.7
|
|
18
|
+
Dynamic: license-file
|
|
19
|
+
|
|
20
|
+
# 🎵 Music Explorer
|
|
21
|
+
|
|
22
|
+
[](LICENSE)
|
|
23
|
+
[](https://www.python.org/)
|
|
24
|
+
[](requirements.txt)
|
|
25
|
+
|
|
26
|
+
A lightweight music player with both a graphical (Tkinter) and terminal (Textual) interface — fast to run, easy to extend.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## Table of contents
|
|
31
|
+
|
|
32
|
+
- [Features](#features)
|
|
33
|
+
- [Quick start](#quick-start)
|
|
34
|
+
- [Usage](#usage)
|
|
35
|
+
- [Installation](#installation)
|
|
36
|
+
- [Configuration](#configuration)
|
|
37
|
+
- [Screenshots](#screenshots)
|
|
38
|
+
- [Contributing](#contributing)
|
|
39
|
+
- [License](#license)
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Features
|
|
44
|
+
|
|
45
|
+
- ✅ Dual interfaces: GUI (Tkinter) and TUI (Textual)
|
|
46
|
+
- ✅ Supports: MP3, WAV, OGG, FLAC
|
|
47
|
+
- ✅ Shuffle and loop modes (Off / All / One)
|
|
48
|
+
- ✅ Remembers last folder, last track, and volume
|
|
49
|
+
- ✅ Persists playlist order to `queue.json`
|
|
50
|
+
- ⚡ Lightweight, minimal dependencies
|
|
51
|
+
|
|
52
|
+
## Quick start
|
|
53
|
+
|
|
54
|
+
Recommended: run inside a virtual environment.
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
# run with uv (recommended)
|
|
58
|
+
uv run main.py
|
|
59
|
+
|
|
60
|
+
# or run directly with Python
|
|
61
|
+
python main.py
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Usage
|
|
65
|
+
|
|
66
|
+
On startup the program offers a choice between GUI and Terminal UI. You can force a mode:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
python main.py -t gui # GUI only
|
|
70
|
+
python main.py -t cli # Terminal only
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## Installation
|
|
74
|
+
|
|
75
|
+
Create a virtual environment and install pinned dependencies:
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
python -m venv .venv
|
|
79
|
+
.venv\Scripts\activate
|
|
80
|
+
pip install -r requirements.txt
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
## Configuration
|
|
84
|
+
|
|
85
|
+
Settings are saved to `save.json`. Example minimal defaults you can copy into `save.json`:
|
|
86
|
+
|
|
87
|
+
```json
|
|
88
|
+
{
|
|
89
|
+
"current-folder": null,
|
|
90
|
+
"current-file": null,
|
|
91
|
+
"settings": {
|
|
92
|
+
"volume": 100,
|
|
93
|
+
"shuffle": false,
|
|
94
|
+
"loop": "off"
|
|
95
|
+
},
|
|
96
|
+
"queue-file": null
|
|
97
|
+
}
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
Playlist order is persisted to `queue.json` inside your music folder.
|
|
101
|
+
|
|
102
|
+
## Screenshots
|
|
103
|
+
|
|
104
|
+

|
|
105
|
+
*GUI demo*
|
|
106
|
+
|
|
107
|
+

|
|
108
|
+
*Terminal demo*
|
|
109
|
+
|
|
110
|
+
## Contributing
|
|
111
|
+
|
|
112
|
+
- Open issues for bugs or ideas
|
|
113
|
+
- Send a PR with a clear description and tests where applicable
|
|
114
|
+
- Keep changes small and focused
|
|
115
|
+
|
|
116
|
+
## License
|
|
117
|
+
|
|
118
|
+
MIT — see the `LICENSE` file.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
Made with ❤️ — happy hacking!
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
music_explorer.egg-info/PKG-INFO
|
|
5
|
+
music_explorer.egg-info/SOURCES.txt
|
|
6
|
+
music_explorer.egg-info/dependency_links.txt
|
|
7
|
+
music_explorer.egg-info/entry_points.txt
|
|
8
|
+
music_explorer.egg-info/requires.txt
|
|
9
|
+
music_explorer.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dist
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "music-explorer"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "a side project with simple and clean music player with Tkinter GUI and Textual TUI"
|
|
5
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "arkanz4idan", email = "arkanzaidanwijayatsi@gmail.com"}
|
|
10
|
+
]
|
|
11
|
+
keywords = ["music", "player", "audio", "pygame", "textual"]
|
|
12
|
+
|
|
13
|
+
license-files = ["LICENSE"]
|
|
14
|
+
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
dependencies = [
|
|
21
|
+
"pygame-ce>=2.5.7",
|
|
22
|
+
"pydub",
|
|
23
|
+
"numpy",
|
|
24
|
+
"imageio-ffmpeg",
|
|
25
|
+
"textual>=8.2.7",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[project.scripts]
|
|
29
|
+
music-explorer = "main:main"
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
requires = ["setuptools>=68.0.0", "wheel"]
|
|
34
|
+
build-backend = "setuptools.build_meta"
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.packages.find]
|
|
37
|
+
where = ["."]
|
|
38
|
+
exclude = ["assets", "testme"]
|