librelyrics 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ """LibreLyrics - Fetch lyrics from various sources.
2
+
3
+ A modular, plugin-based lyrics fetcher supporting multiple providers.
4
+ """
5
+ from importlib.metadata import version
6
+
7
+ from librelyrics.core import LibreLyrics
8
+ from librelyrics.exceptions import (
9
+ LibreLyricsError,
10
+ LyricsNotFound,
11
+ NoMatchingModuleError,
12
+ )
13
+ from librelyrics.models import LyricsLine, LyricsResponse
14
+ from librelyrics.modules.base import LyricsType, ModuleCapability
15
+
16
+ __version__ = version("librelyrics")
17
+
18
+ __all__ = [
19
+ 'LibreLyrics',
20
+ 'LyricsResponse',
21
+ 'LyricsLine',
22
+ 'LyricsType',
23
+ 'ModuleCapability',
24
+ 'LibreLyricsError',
25
+ 'NoMatchingModuleError',
26
+ 'LyricsNotFound',
27
+ '__version__',
28
+ ]