Skip to content

๐ŸŒฟ Retrieve information about a song, including details like the artist, album, release date, genres, and lyrics using Spotify and MusixMatch API

License

Notifications You must be signed in to change notification settings

TrueMyst/pymusix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

13 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation


๐ŸŒฟ PyMusix, a tool that lets you retrieve information about a song, including details like the artist, album, release date, genres, lyrics and more. Uses Spotify and Musixmatch APIs to gather this information.

Maintained Pepy Total Downlods PyPI - Version GitHub License

๐Ÿ“ฆ Installation

Install the Stable Version of pymusix from PyPi:

# Linux/macOS
python3 -m pip install -U pymusix
# Windows
py -3 -m pip install -U pymusix

OR Install the Working Version of pymusix from Github:

  1. Clone the GitHub repository:

    git clone https://github.com/TrueMyst/pymusix.git
    cd pymusix
  2. Install the required dependencies:

    pip install -r requirements.txt

After installing it anyway, set up the environment variables by creating a .env file in your root directory. The file should contain the following:

SPOTIFY_CLIENT_ID = "spotify-client-id"
SPOTIFY_CLIENT_SECRET = "spotify-client-secret"
MUSIXMATCH_USERTOKEN = "musixmatch-usertoken"

You can get the Spotify Client ID and Client Secret from the Spotify Developer Dashboard. For Musixmatch User Token, you can follow this guide here.

You are now ready to use PyMusix!

๐ŸคŒ How to use?

A basic usage is shown below, for more information, please check out the examples given here.

import os
from dotenv import load_dotenv
from pymusix import PyMusix

load_dotenv()

CLIENT_ID = os.getenv("SPOTIFY_CLIENT_ID")
CLIENT_SECRET = os.getenv("SPOTIFY_CLIENT_SECRET")
USER_TOKEN = os.getenv("MUSIXMATCH_USERTOKEN")

song = PyMusix()

song.set_secrets(CLIENT_ID, CLIENT_SECRET, USER_TOKEN)
song.search_track(q_name = "Pluto Projector", q_artist = "Rex Orange County")

print("Track Name:", song.name)
print("Lyrics:", song.lyrics)
print("Primary Genre:", song.primary_genre)
# ... and more

๐Ÿค— Contributing

Contributions to pymusix are welcomed. Feel free to submit your suggestions via pull requests. Your contributions are invaluable in enhancing this tool for everyone.

๐Ÿ“‹ License

๐ŸŒฟ pymusix is licensed under the MIT license, which you can find in the LICENSE file.


Made with ๐Ÿ’œ
elysianmyst, 2024

About

๐ŸŒฟ Retrieve information about a song, including details like the artist, album, release date, genres, and lyrics using Spotify and MusixMatch API

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages