Initial commit
- 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
This commit is contained in:
9
paroles_net_scraper/__init__.py
Normal file
9
paroles_net_scraper/__init__.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""
|
||||
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"]
|
||||
Reference in New Issue
Block a user