🌿 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.
📦 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:
-
Clone the GitHub repository:
git clone https://github.com/TrueMyst/pymusix.git cd pymusix
-
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pymusix-1.0.0.tar.gz
.
File metadata
- Download URL: pymusix-1.0.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3730eec3a38c645db48ce348513005f16fd3d2db184759fce9e96202092add3 |
|
MD5 | 132767ae7d1a15eb4d54a188cff9bd27 |
|
BLAKE2b-256 | 16851568dee1c7a600d3a5611174d17560a9de720613f322a9b44995424ba47f |
File details
Details for the file pymusix-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: pymusix-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c455222f99466b15c7ed3e010491395551c7407618027b956d11f4665f7eeb80 |
|
MD5 | 7e472226a38ab973d6b53f42c2048e6e |
|
BLAKE2b-256 | 2ebd3e57a3a9ba86f4d8a382b7b62bf9282034ad2e74ed03dae61858f56e63dc |