Skip to main content

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

Project description


🌿 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymusix-1.0.0.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

pymusix-1.0.0-py3-none-any.whl (6.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page