Check-in [6c6c870008]
Overview
| Comment: | dirble: Fix unexpected Null/None for content_type and bitrate stream[] values. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6c6c8700086eb2237003fdc1b44a1d74 |
| User & Date: | mario on 2016-11-11 22:24:00 |
| Other Links: | manifest | tags |
Context
|
2016-11-11
| ||
| 22:58 | Adapt GenericChannel to use state icon for multi-URL stations. Fix RadioSure slightly to use spaces instead of TABs for `url` lists. check-in: 4ebb6babed user: mario tags: trunk | |
| 22:24 | dirble: Fix unexpected Null/None for content_type and bitrate stream[] values. check-in: 6c6c870008 user: mario tags: trunk | |
| 22:23 | exportcat: Strip non-filename characters (slash) from genre prefix. check-in: 921d100bbc user: mario tags: trunk | |
Changes
Modified channels/dirble.py from [3714c6faa5] to [cb216f01ee].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # encoding: UTF-8 # api: streamtuner2 # title: Dirble # description: Song history tracker for Internet radio stations. # url: http://dirble.com/ |
| ︙ | |||
87 88 89 90 91 92 93 | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | - + + + - + - + + + + + + + + - + - + - - + + + - + |
for r in
self.api("category/{}/stations".format(self.catmap.get(cat, 0)), all=1)# per_page=200 won't work
]
# Extract rows
def unpack(self, r):
|
| ︙ |