-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyjamendo.py
86 lines (69 loc) · 2.61 KB
/
pyjamendo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# List radio streams from jamendo.com.
#
# Jamendo distributes free music. It is free for private use.
#
# It also provides a couple of radio stations.
#
# This script uses jamendo API to determine the radio URLs and prints
# them in a form suitable for m3u files.
#
# The URLs are turned from https to http, because `cmus` cannot
# connect to https sources.
#
# See https://developer.jamendo.com/v3.0/read-methods for docs
#
import json
import logging
try:
from urllib.parse import urlencode # python 3.x
from urllib.request import urlopen
except ImportError: # pragma: no cover
from urllib import urlencode, urlopen # python 2.x
__version__ = "0.2.dev0"
BASE_URL = 'https://api.jamendo.com/v3.0'
CLIENT_ID = '56d30c95' # for testing only
logger = logging.getLogger('pyjamendo')
logger.addHandler(logging.NullHandler())
# # Uncomment next line for debugging
# logging.basicConfig(level=logging.DEBUG)
def call_api(path, params, client_id=CLIENT_ID):
"""Call the Jamendo API with `params`.
`params` are parameters in a `dict()`.
"""
params.update(dict(client_id=client_id, format='jsonpretty'))
params = urlencode(params)
url = '%s/%s?%s' % (BASE_URL, path, params)
logger.info('Calling %s' % url)
resp = urlopen(url)
return json.loads(resp.read().decode('utf-8'))
def jam_radios_to_m3u(allow_https_links=True):
"""Prints an EXTM3U-formatted list of jamendo radio stations.
Jamendo web API is used to ask and list the stations in a format
suitable for players like `winamp`, `cmus`, etc.
If `allow_https_links` is False, any 'https' links are turned into
`http` ones.
Requires online connection.
"""
result = call_api('radios/', dict())
radios = result['results']
print("#EXTM3U")
for station in radios:
logger.info('Handling station: %s' % station)
details = call_api(
'radios/stream/', dict(name=station['name']))
logger.info('Station Details: %s' % details)
details = details['results']
for stream_descr in details:
stream_url = stream_descr['stream']
if not allow_https_links:
stream_url = stream_url.replace('https:', 'http:')
print("#EXTINF:-1, Jamendo - %s\n%s" % (
stream_descr['dispname'], stream_url))
def main():
"""Called w/o any parameters when run as script.
Calls jam_radios_to_m3() with https-links turned into http links.
See docs of `jam_radios_to_m3u()` for details.
"""
jam_radios_to_m3u(allow_https_links=False)
if __name__ == "__main__": # pragma: no cover
main()