https://github.com/spidy20/pymusic_player
A GUI Music Player with all the basic functions, which is developed using Tkinter
https://github.com/spidy20/pymusic_player
music-player music-player-python
Last synced: 3 months ago
JSON representation
A GUI Music Player with all the basic functions, which is developed using Tkinter
- Host: GitHub
- URL: https://github.com/spidy20/pymusic_player
- Owner: Spidy20
- License: mit
- Created: 2021-06-08T05:39:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-10T03:54:34.000Z (over 4 years ago)
- Last Synced: 2025-06-16T21:57:22.518Z (4 months ago)
- Topics: music-player, music-player-python
- Language: Python
- Homepage: https://pypi.org/project/PyMusic-Player/
- Size: 276 KB
- Stars: 15
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Music Player GUI using Python Tkinter
[](https://www.python.org/)
[](https://www.python.org/downloads/release/python-360/)[Tutorial of Publishing Python Package](https://youtu.be/7AF3HvKz070)
## Functionality of the Music Player- Better Looking GUI
- Pause/Play Supported
- Add/Delete songs from Playlist
- Previous/Next song function
- Time duration of song / next song displays
- List of all the songs.
- Adjust Volume
- Automatically Playing in Queue
- Play Selected song from Playlist## Usage
- Make sure you have Python installed in your system.
- Run Following command in the CMD.
```
pip install PyMusic-Player
```
## Example```
# test.py
from PyMusic_Player import Music_Player_GUI## Make sure all the .MP3 songs besides in the folder
song_dir = 'path/of/songs_dir'# If you want to give the Icon, make sure you have downloaded proper .ICO file.
icon = 'your.ico'
Music_Player_GUI(song_dir,icon)
```## Run the following Script.
```
python test.py
```## Screenshots
## Note
- I have tried to implement all the functionality, it might have some bugs also. Ignore that or please try to solve that bug.