MythTV  master
genius.py
Go to the documentation of this file.
1 # -*- Mode: python; coding: utf-8; indent-tabs-mode: nil; -*-
2 
3 from common import culrcwrap
4 from lib.culrcscrapers.genius.lyricsScraper import LyricsFetcher
5 # make sure this-------^^^^^^^^^ matches this file's basename
6 
7 info = {
8  'name': 'Genius',
9  'description': 'Search http://www.genius.com for lyrics',
10  'author': 'Paul Harrison and ronie',
11  'priority': '200',
12  'syncronized': False,
13  'artist': 'Maren Morris',
14  'title': 'My Church',
15 }
16 
17 if __name__ == '__main__':
18  culrcwrap.main(__file__, info, LyricsFetcher)