MythTV master
lrclib.py
Go to the documentation of this file.
1# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil; -*-
2
3from common import culrcwrap
4from lib.culrcscrapers.lrclib.lyricsScraper import LyricsFetcher
5# make sure this-------^^^^^^^^^ matches this file's basename
6
7info = {
8 'name': '*LrcLib',
9 'description': 'Search https://lrclib.net for synchronized lyrics',
10 'author': 'ronie',
11 'priority': '110',
12 'syncronized': True,
13 'artist': 'CHVRCHES',
14 'title': 'Clearest Blue',
15}
16
17if __name__ == '__main__':
18 culrcwrap.main(__file__, info, LyricsFetcher)