- Python package to fetch song lyrics from paroles.net - Web scraping functionality with requests and BeautifulSoup4 - Command-line interface for easy usage - Comprehensive test suite with pytest - GitLab CI configuration with uv support - Package metadata and dependencies in pyproject.toml - Documentation and usage instructions
9 lines
234 B
Python
9 lines
234 B
Python
"""
|
|
paroles_net_scraper - A package to fetch song lyrics from paroles.net
|
|
"""
|
|
|
|
from .paroles_net_scraper import get_song_lyrics, search_song
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Rene Luria"
|
|
__all__ = ["get_song_lyrics", "search_song"] |