mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
15 lines
253 B
Python
15 lines
253 B
Python
import lyricwikia
|
|
|
|
from abc import ABC
|
|
from abc import abstractmethod
|
|
|
|
|
|
class LyricBase(ABC):
|
|
@abstractmethod
|
|
def __init__(self, artist, song):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_lyrics(self, linesep="\n", timeout=None):
|
|
pass
|