Check-in [7df4f3284f]
Overview
| Comment: | Tag with priority:never, as it's not meant to be bundled really. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
7df4f3284f665577a0e4ceb4c175bc8c |
| User & Date: | mario on 2015-05-01 22:53:17 |
| Other Links: | manifest | tags |
Context
|
2015-05-01
| ||
| 23:10 | Rename 8tracks module to have a legal Python identifier (rather than the globals()/module rename workaround). check-in: 8cd49580a4 user: mario tags: trunk | |
| 22:53 | Tag with priority:never, as it's not meant to be bundled really. check-in: 7df4f3284f user: mario tags: trunk | |
| 22:52 | Remove contrib/bieber joke example. check-in: c854934751 user: mario tags: trunk | |
Changes
Modified contrib/podspider.py from [704b5674fb] to [41ea1a8df2].
1 2 3 4 5 6 7 8 9 10 | # encoding: UTF-8 # api: streamtuner2 # title: PODspider # description: lists Podcasts RSS from proprietary podspider xml database # version: 0.0 # type: channel # category: talk # depends: lxml.etree, pyquery # url: http://www.radiograbber.de/ # status: unsupported | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # encoding: UTF-8 # api: streamtuner2 # title: PODspider # description: lists Podcasts RSS from proprietary podspider xml database # version: 0.0 # type: channel # category: talk # depends: lxml.etree, pyquery # url: http://www.radiograbber.de/ # status: unsupported # priority: never # # Podspider is one part of the commercial Windows "Radiograbber" software. # A demo version is available from http://www.surfmusik.net/downloads/download.php?pid=13 # and runs under Wine. # It downloads a "Podspiderpdb.xml.tmp_", which this plugin can display as # streamtuner2 channel. The contents are a pre-classified list of PODcasts # via RSS feeds. It needs some rework to strip out excessive duplicates, but |
| ︙ | ︙ | |||
193 194 195 196 197 198 199 |
if cat in row["category"]:
row = dict(row) #copy
row["genre"] = ", ".join(row["category"])
del row["category"]
r.append(row)
return r
| < < < < < | 193 194 195 196 197 198 199 200 201 202 |
if cat in row["category"]:
row = dict(row) #copy
row["genre"] = ", ".join(row["category"])
del row["category"]
r.append(row)
return r
|