[booblyrics] able to search by artist or songtitle

This commit is contained in:
Julien Veyssier 2013-03-08 13:36:39 +01:00
commit 0628802b72
6 changed files with 66 additions and 18 deletions

View file

@ -41,10 +41,13 @@ class ICapLyrics(IBaseCap):
"""
Lyrics websites.
"""
def iter_lyrics(self, pattern):
def iter_lyrics(self, criteria, pattern):
"""
Search lyrics and iterate on results.
Search lyrics by artist or by song
and iterate on results.
:param criteria: 'artist' or 'song'
:type criteria: str
:param pattern: pattern to search
:type pattern: str
:rtype: iter[:class:`SongLyrics`]