yading@7: import os yading@7: __author__ = "Luca De Vitis " yading@7: __version__ = '0.9' yading@7: __copyright__ = "2011, %s " % __author__ yading@7: __license__ = """ yading@7: Copyright (C) %s yading@7: yading@7: This program is free software: you can redistribute it and/or modify yading@7: it under the terms of the GNU General Public License as published by yading@7: the Free Software Foundation, either version 3 of the License, or yading@7: (at your option) any later version. yading@7: yading@7: This program is distributed in the hope that it will be useful, yading@7: but WITHOUT ANY WARRANTY; without even the implied warranty of yading@7: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the yading@7: GNU General Public License for more details. yading@7: yading@7: You should have received a copy of the GNU General Public License yading@7: along with this program. If not, see . yading@7: """ % __copyright__ yading@7: __doc__ = """ yading@7: :abstract: Python interface to Musixmatch API yading@7: :version: %s yading@7: :author: %s yading@7: :organization: Monkeython yading@7: :contact: http://www.monkeython.com yading@7: :copyright: %s yading@7: """ % (__version__, __author__, __license__) yading@7: __docformat__ = 'restructuredtext en' yading@7: __classifiers__ = [ yading@7: 'Development Status :: 4 - Beta', yading@7: 'Intended Audience :: Developers', yading@7: 'License :: OSI Approved :: GNU General Public License (GPL)', yading@7: 'Operating System :: OS Independent', yading@7: 'Topic :: Internet :: WWW/HTTP', yading@7: 'Topic :: Software Development :: Libraries', yading@7: ] yading@7: __all__ = [ yading@7: 'ws', 'api', 'base', yading@7: 'artist', 'track', 'lyrics', 'subtitle', 'album' yading@7: ] yading@7: yading@7: apikey = os.environ.get('musixmatch_apikey', None) yading@7: format = os.environ.get('musixmatch_format', 'json')