
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Python library for heavy metal song lyrics, albums, song titles and other info.
metalparser is a Python API for obtaining song lyrics from diverse lyrics websites. At the moment there is only one supported website, which is DarkLyrics, an online database of lyrics for heavy metal music.
This library scrapes the corresponding website for the lyrics and returns results according to the used API. Kindly read the disclaimer to ensure that your use complies with it.
metalparser is distributed as a Python package, freely available on PyPI and can easily be installed via pip.
Given that you are using python >= 3.5
:
pip install metalparser
Alternatively, it can be manually installed by cloning this project on your local computer:
git clone https://github.com/lucone83/metal-parser.git
cd metal-parser
pip install .
The library comes (at the moment) with 6 APIs:
More complete docs regarding this project can be found on readthedocs.
I recommend not to change the default settings regarding requests rate per minute and the wait time (3 secs) after each request. DarkLyrics does not have a robots.txt, so they don't really like scraping. Be gentle! :)
from metalparser.darklyrics import DarkLyricsApi
api = DarkLyricsApi()
song = 'under grey skies'
artist = 'kamelot'
lyrics = api.get_song_info_and_lyrics(song=song, artist=artist, lyrics_only=True)
print(lyrics)
artist = 'pantera'
album = 'vulgar display of power'
songs_list = api.get_songs_info(artist, album=album, title_only=True)
print(songs_list)
artist = 'iron maiden'
albums_list = api.get_albums_info(artist=artist, title_only=True)
print(albums_list)
Currently the following python versions are supported:
FAQs
Python library for heavy metal song lyrics, albums, song titles and other info.
We found that metalparser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.