Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 389 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 389 Bytes

lrc_kit

A very simple API for searching for LRC files in python

from lrc_kit import ComboLyricProvider, SearchRequest

engine = ComboLyricProvider()
search = SearchRequest('eminem', 'stan')
result, engine_used = engine.search(search)
result.export('stan.lrc')

See some more advanced usage in my real time lyrics project :)