Python API for www.metal-archives.com
Project description
python-metallum
A basic python API for the amazing www.metal-archives.com
Install
pip install python-metallum
Usage
Artist search
import metallum
# Search bands matching term
bands = metallum.band_search('metallica')
# -> [<SearchResult: Metallica | Thrash Metal (early), Hard Rock/Heavy/Thrash Metal (later) | United States>]
bands[0].name
# -> 'Metallica'
# Fetch band page
band = bands[0].get()
# Get all albums
band.albums
# -> [<Album: No Life 'til Leather (Demo)>, <Album: Kill 'Em All (Full-length)>, ...]
# Get only full-length albums
full_length = band.albums.search(type=metallum.AlbumTypes.FULL_LENGTH)
# -> [<Album: Kill 'Em All (Full-length)>, <Album: Ride the Lightning (Full-length)>, <Album: Master of Puppets (Full-length)>, <Album: ...and Justice for All (Full-length)>, <Album: Metallica (Full-length)>, <Album: Load (Full-length)>, <Album: ReLoad (Full-length)>, <Album: Garage Inc. (Full-length)>, <Album: St. Anger (Full-length)>, <Album: Death Magnetic (Full-length)>, <Album: Hardwired... to Self-Destruct (Full-length)>]
album = full_length[2]
album.title
# -> 'Master of Puppets'
album.date
# -> datetime.datetime(1986, 3, 3, 0, 0)
# Get all tracks
album.tracks
# -> [<Track: Battery (313)>, <Track: Master of Puppets (516)>, <Track: The Thing That Should Not Be (397)>, <Track: Welcome Home (Sanitarium) (388)>, <Track: Disposable Heroes (497)>, <Track: Leper Messiah (341)>, <Track: Orion (508)>, <Track: Damage, Inc. (330)>]
Album search
import metallum
# Search albums matching term
metallum.album_search('seventh')
# -> []
# Search albums containing term
metallum.album_search('seventh', strict=False)
# -> [<SearchResult: Beherit | Seventh Blasphemy | Demo>, <SearchResult: Black Sabbath | Seventh Star | Full-length>, ...]
# Search albums by band
metallum.album_search('seventh', band='iron maiden', strict=False)
# -> [<SearchResult: Iron Maiden | Seventh Son of a Seventh Son | Full-length>]
Refer to source and doctests for detailed usage
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
python-metallum-1.1.0.tar.gz
(8.5 kB
view details)
Built Distribution
File details
Details for the file python-metallum-1.1.0.tar.gz
.
File metadata
- Download URL: python-metallum-1.1.0.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47c49b50cdd6713dda977e8fb1864cb5ae9a546370a8aa1f2ea1d1269fe3b674 |
|
MD5 | 789fcfaf3b58fefe0d861aa352416a25 |
|
BLAKE2b-256 | 18b4908f44e2eae5c7f023898945671dd52cb4f2b7b203c8893138568b75f567 |
File details
Details for the file python_metallum-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: python_metallum-1.1.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60b887e0018f5c89e1a821c7e8ce26eb1418ed1f100b37e10fed14f397a38e18 |
|
MD5 | 6edf176aa258060c0473cfa5f3046e40 |
|
BLAKE2b-256 | df147a6b4d3dcaa7aebe92c912f0a6007691c51ca7447e3b91bef4b23e9db7e7 |