Maloja Manual Scrobbler is a Python script for manually scrobbling albums to your Maloja instance using data from Discogs.
-
Clone the Repository:
git clone https://github.com/timkicker/maloja-manual-scrobbler.git
-
Install Dependencies:
pip install -r requirements.txt
Run the script using Python. Here's an example:
-ar, --artist
: The name of the artist.-al, --album
: The name of the album.-r, --release
: The release ID of the album on Discogs. (optional)-d, --date
: The date and time when you started listening to the album (optional).
Before using the script, you need to set your Discogs token and Maloja API key inside the script. Look for the following lines:
DISCOGS_TOKEN="YOUR_DISCOGS_TOKEN"
MALOJA_URL="YOUR_MALOJA_URL"
MALOJA_API_KEY="YOUR_MALOJA_API_KEY"
Replace "YOUR_DISCOGS_TOKEN"
, "YOUR_MALOJA_URL"
, and "YOUR_MALOJA_API_KEY"
with your actual Discogs token, Maloja URL, and Maloja API key, respectively.
This project is licensed under the GNU General Public License v3.0.