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 | # encoding: UTF-8
# api: streamtuner2
# title: iTunes Radio
# description: iTunes unsorted station list via RoliSoft Radio Playlist caching webservice.
# version: 0.1
# type: channel
# category: radio
# url: http://www.itunes.com?
# priority: optional
# config: -
# documentation: http://lab.rolisoft.net/playlists.html
#
# Provides pre-parsed radio station playlists for various services
# → Shoutcast
# → Xiph/ICEcast
# → Tunein
# → iTunes
# → FilterMusic
# → SomaFM
# → AccuRadio
# → BBC
#
# In this module only iTunes will be queried for now.
#
#
import re
from config import conf, dbg, __print__
from channels import *
import ahttp as http
|
>
|
>
<
| 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 | # encoding: UTF-8
# api: streamtuner2
# title: iTunes Radio
# description: iTunes unsorted station list via RoliSoft Radio Playlist caching webservice.
# version: 0.1
# type: channel
# category: radio
# url: http://www.itunes.com?
# priority: optional
# config: -
# documentation: http://lab.rolisoft.net/playlists.html
#
#
# API provides pre-parsed radio station playlists for various services
#
# → Shoutcast
# → Xiph/ICEcast
# → Tunein
# → iTunes
# → FilterMusic
# → SomaFM
# → AccuRadio
# → BBC
#
# In this module only iTunes will be queried for now.
#
import re
from config import conf, dbg, __print__
from channels import *
import ahttp as http
|