MythTV master
musixmatchlrc.py
Go to the documentation of this file.
1# -*- Mode: python; coding: utf-8; indent-tabs-mode: nil; -*-
2
3from common import culrcwrap
4
5# In this grabber we need to point its PROFILE to mythtv's cache
6# directory, like this:
7import lib.culrcscrapers.musixmatchlrc.lyricsScraper
8lib.culrcscrapers.musixmatchlrc.lyricsScraper.PROFILE = culrcwrap.getCacheDir()
9# make sure this--^^^^^^^^^^^^^ matches this file's basename
10
11info = {
12 'name': '*Musixmatchlrc',
13 'description': 'Search https://musixmatch.com for synchronized lyrics',
14 'author': 'ronie',
15 'priority': '100',
16 'syncronized': True,
17 'artist': 'Kate Bush',
18 'title': 'Wuthering Heights',
19}
20
21if __name__ == '__main__':
22 culrcwrap.main(__file__, info, lib.culrcscrapers.musixmatchlrc.lyricsScraper.LyricsFetcher)