Sign in
Register
Home
Projects
Help
Search
:
Paris Hackday Code
Overview
Members
Activity
Repository
Code docs
FFmpeg
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
Yading
musixmatch-master
build
lib
musixmatch
Yading/musixmatch-master/build/lib/musixmatch/__init__.py
Go to the documentation of this file.
1
import
os
2
__author__ =
"Luca De Vitis <luca@monkeython.com>"
3
__version__ =
'0.9'
4
__copyright__ =
"2011, %s "
% __author__
5
__license__ =
"""
6
Copyright (C) %s
7
8
This program is free software: you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation, either version 3 of the License, or
11
(at your option) any later version.
12
13
This program is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
GNU General Public License for more details.
17
18
You should have received a copy of the GNU General Public License
19
along with this program. If not, see <http://www.gnu.org/licenses/>.
20
"""
% __copyright__
21
__doc__ =
"""
22
:abstract: Python interface to Musixmatch API
23
:version: %s
24
:author: %s
25
:organization: Monkeython
26
:contact: http://www.monkeython.com
27
:copyright: %s
28
"""
% (__version__, __author__, __license__)
29
__docformat__ =
'restructuredtext en'
30
__classifiers__ = [
31
'Development Status :: 4 - Beta'
,
32
'Intended Audience :: Developers'
,
33
'License :: OSI Approved :: GNU General Public License (GPL)'
,
34
'Operating System :: OS Independent'
,
35
'Topic :: Internet :: WWW/HTTP'
,
36
'Topic :: Software Development :: Libraries'
,
37
]
38
__all__ = [
39
'ws'
,
'api'
,
'base'
,
40
'artist'
,
'track'
,
'lyrics'
,
'subtitle'
,
'album'
41
]
42
43
apikey = os.environ.get(
'musixmatch_apikey'
,
None
)
44
format = os.environ.get(
'musixmatch_format'
,
'json'
)
Generated on Mon Nov 18 2024 06:51:50 for FFmpeg by
1.8.11
Loading...