13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# RadioTime API uses OPML for station/podcast entries.
#
# Only radio listings are queried for now. But there are
# heaps more talk and local show entries, etc. (Would require
# more deeply nested category tree.)
#
import re
import json
from config import conf, dbg, __print__
from channels import *
import ahttp as http
|
<
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#
# RadioTime API uses OPML for station/podcast entries.
#
# Only radio listings are queried for now. But there are
# heaps more talk and local show entries, etc. (Would require
# more deeply nested category tree.)
#
import re
import json
from config import conf, dbg, __print__
from channels import *
import ahttp as http
|