Metadata-Version: 2.1
Name: enmet
Version: 0.4.0
Summary: Python API for Encyclopaedia Metallum (The Metal Archives) website.
Author: Łukasz Jakubowski
License: GPL-3.0-or-later
Project-URL: Documentation, https://github.com/lukjak/enmet/blob/master/README.md
Project-URL: Repository, https://github.com/lukjak/enmet
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: test

Enmet is a programmatic API to Encyclopaedia Metallum - The Metal Archives site. It allows convenient access to Metal Archives data from python code.

Enmet is designed for ease of use and ease of development and maintenance.

See Documentation link for full documentation. Sample usage:
```python
>>> import enmet
>>> megadeth = enmet.search_bands(name="Megadeth")[0]
>>> print(megadeth.discography)  # (output truncated)
[<Album: Last Rites (4250)>, <Album: Killing Is My Business... and Business Is Good! (659)>, ...]
>>> print(megadeth.discography[0].discs[0].tracks)
[<Track: Last Rites / Loved to Deth (38701A)>, <Track: Mechanix (38702A)>, <Track: The Skull Beneath the Skin (38703A)>]
>>> print(megadeth.lineup)
[<LineupArtist: Dave Mustaine (184)>, <LineupArtist: James LoMenzo (2836)>, <LineupArtist: Kiko Loureiro (3826)>, <LineupArtist: Dirk Verbeuren (1391)>]
>>> print([artist.name for artist in megadeth.lineup])
['Dave Mustaine', 'James LoMenzo', 'Kiko Loureiro', 'Dirk Verbeuren']
```
