Check-in [69a40e6b71]
Overview
Comment: | Update UbuntuUsers wiki raw export URLs. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
69a40e6b715a5490ba1e1190e7634e88 |
User & Date: | mario on 2016-04-11 00:54:11 |
Other Links: | manifest | tags |
Context
2016-04-11
| ||
00:55 | Refetch ZIP/CSV only once per day, and extract each category from CSV separately. check-in: af2c52cdca user: mario tags: trunk | |
00:54 | Update UbuntuUsers wiki raw export URLs. check-in: 69a40e6b71 user: mario tags: trunk | |
00:53 | Group some categories, add description. check-in: 44151e5bce user: mario tags: trunk | |
Changes
Modified channels/ubuntuusers.py from [664a150864] to [482b9ba9b7].
1 2 3 4 | # encoding: UTF-8 # api: streamtuner2 # title: UbuntuUsers # description: Static list of radio stations courtesy of the UbuntuUsers.de Wiki | | | 1 2 3 4 5 6 7 8 9 10 11 12 | # encoding: UTF-8 # api: streamtuner2 # title: UbuntuUsers # description: Static list of radio stations courtesy of the UbuntuUsers.de Wiki # version: 0.2 # type: channel # category: radio # url: http://wiki.ubuntuusers.de/Internetradio/Stationen # png: # iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACJVBMVEUAAACjeUWif2/CeiGhWTvUewuhQRjPeRCfRyK1hEeWYkynQkOJREW0Dw+TICC3DAyXRES3DAzXzMewhlOsahqtaxu3DAytaxu4DAytaxqtIiKqeTyaR0eokHKk # h2SjayikZhmdbC+SdVaXVz2fQhufQxyhaVGjjYKsdjS2jmXBUSS2UimUXUaybBXCRA+MPx+vbR2+RhWLSCuhe0vBiEGrZUiDX0+TREWzP0CgQ0R1RUWcHByqFBSDKCifFxesMDGKUVGfFxfIsqng3tvBhz+khmDLdxCYYiDLdxGaYyKfFxfLdxGaYyKfFhbMdxCZYiCfNTW6gHzEjki+fCqdeEifZ2eWKSmVGhqTMTGXaWexkWWrbR+rbB2og1Oo # mYbWfhDefwjQexHXRgnXRgrziAP/jQDvhAC7jV/YTBT3SAD3SADthAT5iADngAG8kmfRTBfxRADwRADEhjm4h0nGuay0fGW/YTnAZD21ODq6PT7BQ0S9QEG2OTq2PD3KBATSAADSAADRAADSAADSAADSAADNAwPUAADUAADPAwPPDA3QDg/QDxDNAwPVAADRAAC2SUmzjIWsf3CugXLVAADJAADBgH3Hm1/eiBveiBzVAADIAADAf3rMizb+iwD9 |
︙ | ︙ | |||
32 33 34 35 36 37 38 | class ubuntuusers (ChannelPlugin): # description has_search = False listformat = "srv" titles = dict(playing=False, listeners=False, bitrate=False) base = { | | | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | class ubuntuusers (ChannelPlugin): # description has_search = False listformat = "srv" titles = dict(playing=False, listeners=False, bitrate=False) base = { "stations": "http://wiki.ubuntuusers.de/Internetradio/Stationen/a/export/raw/", "tv": "https://wiki.ubuntuusers.de/Internet-TV/Stationen/a/export/raw/", } categories = ["stations", "tv"] # Nope def update_categories(self): pass |
︙ | ︙ |