mimyo 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.
mimyo-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Your Name
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.
mimyo-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: mimyo
3
+ Version: 0.1.0
4
+ Summary: A terminal-based music player
5
+ Author-email: Your Name <you@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourusername/mimyo
8
+ Project-URL: Repository, https://github.com/yourusername/mimyo
9
+ Keywords: music,player,terminal,tui,textual
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: End Users/Desktop
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Players
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: textual>=0.50.0
25
+ Requires-Dist: pygame-ce>=2.4.0
26
+ Requires-Dist: mutagen>=1.47.0
27
+ Requires-Dist: Pillow>=10.0.0
28
+ Requires-Dist: yt-dlp>=2024.1.0
29
+ Requires-Dist: sixel>=0.2.0
30
+ Provides-Extra: discord
31
+ Requires-Dist: pypresence; extra == "discord"
32
+ Dynamic: license-file
33
+
34
+ # mimyo
35
+
36
+ A terminal-based music player built with [Textual](https://github.com/Textualize/textual).
37
+
38
+ ## Features
39
+
40
+ - Terminal UI music playback
41
+ - Album art rendering (including sixel support on compatible terminals)
42
+ - Playlist / queue management
43
+ - YouTube track support
44
+ - Optional Discord rich presence integration
45
+
46
+ ## Installation
47
+
48
+ ```bash
49
+ pip install mimyo
50
+ ```
51
+
52
+ For Discord rich presence:
53
+
54
+ ```bash
55
+ pip install "mimyo[discord]"
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ ```bash
61
+ mimyo
62
+ ```
63
+
64
+ or, without installing:
65
+
66
+ ```bash
67
+ python -m player
68
+ ```
69
+
70
+ By default, mimyo looks for a `Music` folder in your home directory. To point it at a
71
+ different folder (remembered for all future launches):
72
+
73
+ ```bash
74
+ mimyo --path "D:\Music"
75
+ # or short form:
76
+ mimyo -p "D:\Music"
77
+ ```
78
+
79
+ ## License
80
+
81
+ MIT — see [LICENSE](LICENSE).
mimyo-0.1.0/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # mimyo
2
+
3
+ A terminal-based music player built with [Textual](https://github.com/Textualize/textual).
4
+
5
+ ## Features
6
+
7
+ - Terminal UI music playback
8
+ - Album art rendering (including sixel support on compatible terminals)
9
+ - Playlist / queue management
10
+ - YouTube track support
11
+ - Optional Discord rich presence integration
12
+
13
+ ## Installation
14
+
15
+ ```bash
16
+ pip install mimyo
17
+ ```
18
+
19
+ For Discord rich presence:
20
+
21
+ ```bash
22
+ pip install "mimyo[discord]"
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ```bash
28
+ mimyo
29
+ ```
30
+
31
+ or, without installing:
32
+
33
+ ```bash
34
+ python -m player
35
+ ```
36
+
37
+ By default, mimyo looks for a `Music` folder in your home directory. To point it at a
38
+ different folder (remembered for all future launches):
39
+
40
+ ```bash
41
+ mimyo --path "D:\Music"
42
+ # or short form:
43
+ mimyo -p "D:\Music"
44
+ ```
45
+
46
+ ## License
47
+
48
+ MIT — see [LICENSE](LICENSE).
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: mimyo
3
+ Version: 0.1.0
4
+ Summary: A terminal-based music player
5
+ Author-email: Your Name <you@example.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/yourusername/mimyo
8
+ Project-URL: Repository, https://github.com/yourusername/mimyo
9
+ Keywords: music,player,terminal,tui,textual
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: End Users/Desktop
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Players
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: textual>=0.50.0
25
+ Requires-Dist: pygame-ce>=2.4.0
26
+ Requires-Dist: mutagen>=1.47.0
27
+ Requires-Dist: Pillow>=10.0.0
28
+ Requires-Dist: yt-dlp>=2024.1.0
29
+ Requires-Dist: sixel>=0.2.0
30
+ Provides-Extra: discord
31
+ Requires-Dist: pypresence; extra == "discord"
32
+ Dynamic: license-file
33
+
34
+ # mimyo
35
+
36
+ A terminal-based music player built with [Textual](https://github.com/Textualize/textual).
37
+
38
+ ## Features
39
+
40
+ - Terminal UI music playback
41
+ - Album art rendering (including sixel support on compatible terminals)
42
+ - Playlist / queue management
43
+ - YouTube track support
44
+ - Optional Discord rich presence integration
45
+
46
+ ## Installation
47
+
48
+ ```bash
49
+ pip install mimyo
50
+ ```
51
+
52
+ For Discord rich presence:
53
+
54
+ ```bash
55
+ pip install "mimyo[discord]"
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ ```bash
61
+ mimyo
62
+ ```
63
+
64
+ or, without installing:
65
+
66
+ ```bash
67
+ python -m player
68
+ ```
69
+
70
+ By default, mimyo looks for a `Music` folder in your home directory. To point it at a
71
+ different folder (remembered for all future launches):
72
+
73
+ ```bash
74
+ mimyo --path "D:\Music"
75
+ # or short form:
76
+ mimyo -p "D:\Music"
77
+ ```
78
+
79
+ ## License
80
+
81
+ MIT — see [LICENSE](LICENSE).
@@ -0,0 +1,25 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ mimyo.egg-info/PKG-INFO
5
+ mimyo.egg-info/SOURCES.txt
6
+ mimyo.egg-info/dependency_links.txt
7
+ mimyo.egg-info/entry_points.txt
8
+ mimyo.egg-info/requires.txt
9
+ mimyo.egg-info/top_level.txt
10
+ player/__init__.py
11
+ player/__main__.py
12
+ player/app.py
13
+ player/config.py
14
+ player/deps.py
15
+ player/player.py
16
+ player/theme.css
17
+ player/track.py
18
+ player/utils.py
19
+ player/rendering/__init__.py
20
+ player/rendering/art.py
21
+ player/rendering/sixel_win.py
22
+ player/widgets/__init__.py
23
+ player/widgets/bars.py
24
+ player/widgets/queue.py
25
+ player/widgets/youtube.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mimyo = player.app:main
@@ -0,0 +1,9 @@
1
+ textual>=0.50.0
2
+ pygame-ce>=2.4.0
3
+ mutagen>=1.47.0
4
+ Pillow>=10.0.0
5
+ yt-dlp>=2024.1.0
6
+ sixel>=0.2.0
7
+
8
+ [discord]
9
+ pypresence
@@ -0,0 +1 @@
1
+ player
@@ -0,0 +1,3 @@
1
+ """mimyo — a terminal music player."""
2
+
3
+ __version__ = "0.1.0"
@@ -0,0 +1,5 @@
1
+ """Allows `python -m player` to launch the app."""
2
+ from player.app import main
3
+
4
+ if __name__ == "__main__":
5
+ main()