]> kaliko git repositories - mpd-sima.git/blob - sima/plugins/internal/lastfm.py
b4f56c2337e318e71162f9ab64bc180b40c81784
[mpd-sima.git] / sima / plugins / internal / lastfm.py
1 # -*- coding: utf-8 -*-
2 """
3 Fetching similar artists from last.fm web services
4 """
5
6 # standard library import
7
8 # third parties components
9
10 # local import
11 from ...lib.simafm import SimaFM
12 from ...lib.webservice import WebService
13
14
15 class Lastfm(WebService):
16     """last.fm similar artists
17     """
18
19     def __init__(self, daemon):
20         WebService.__init__(self, daemon)
21         self.ws = SimaFM
22
23
24 # VIM MODLINE
25 # vim: ai ts=4 sw=4 sts=4 expandtab