Retrieve and parse some content from scaruffi.com.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dece d0d8c295ea
setup: bump to 0.0.3
3 years ago
scaruffi api: fix _get_ratings_from_lists for some decades 3 years ago
.gitignore gitignore: ignore build directories 4 years ago
Pipfile dependencies: add twine in dev deps 4 years ago
Pipfile.lock dependencies: add twine in dev deps 4 years ago
README.md readme: update with features 3 years ago
pyproject.toml setup: add packaging files 4 years ago
setup.cfg setup: bump to 0.0.3 3 years ago
setup.py setup: add packaging files 4 years ago

README.md

Scaruffi

Get some data from scaruffi.com from Python.

Piero Scaruffi has written a lot about rock music, jazz, classical, whether it is reviews or history. It is a valuable ressource for a variety of reasons and this script aims to make data fetching easier for personal usage.

Features:

  • Get a big list of musicians.
  • Get best albums per decade, grouped by rating.

This is a work in progress, I would like to add more content to be usable!

Install

This library is available on PyPI:

pip install scaruffi

Usage

Check out the ScaruffiApi for all available methods.

from scaruffi.api import ScaruffiApi
api = ScaruffiApi()
api.get_ratings(1960)
# { 9.5: [ Release(title='Trout Mask Replica', ...

This module can also be used as a command-line tool:

scaruffi --help
scaruffi --musicians --offset 5555 --limit 5
# Mooseheart Faith
# Morbid Angel
# Morcheeba
# Morgan Fisher
# Morning 40 Federation
scaruffi --ratings 1960
# 9.5
# - Captain Beefheart - Trout Mask Replica (1969)
# 9.0
# - Bob Dylan - Blonde On Blonde (1966)
# - Captain Beefheart - Safe As Milk (1967)
# ...