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