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 | 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 |
| ︙ | |||
193 194 195 196 197 198 199 | 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
|