MythTV master
megalobiz.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.megalobiz.lyricsScraper import LyricsFetcher
5# make sure this-------^^^^^^^^^ matches this file's basename
6
7info = {
8 'name': '*Megalobiz',
9 'description': 'Search https://megalobiz.com for synchronized lyrics',
10 'author': 'ronie',
11 'priority': '140',
12 'syncronized': True,
13 'artist': 'Michael Jackson',
14 'title': 'Beat It',
15}
16
17# it takes 8 seconds, have to move to the end -twitham, 2024/01
18info['priority'] = '400'
19
20if __name__ == '__main__':
21 culrcwrap.main(__file__, info, LyricsFetcher)