MythTV master
darklyrics.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.darklyrics.lyricsScraper import LyricsFetcher
5# make sure this-------^^^^^^^^^ matches this file's basename
6
7info = {
8 'name': 'DarkLyrics',
9 'description': 'Search http://www.darklyrics.com/ - the largest metal lyrics archive on the Web',
10 'author': 'Paul Harrison and smory',
11 'priority': '260',
12 'syncronized': False,
13 'artist': 'Neurosis',
14 'title': 'Lost',
15}
16
17if __name__ == '__main__':
18 culrcwrap.main(__file__, info, LyricsFetcher)