
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.