Check-in [cf6b582c7e]
Overview
Comment: | Remove print statement. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cf6b582c7eb8c99fed876b5e0a6b52ed |
User & Date: | mario on 2015-05-03 14:07:39 |
Other Links: | manifest | tags |
Context
2015-05-03
| ||
14:08 | Add .wrap() from configdialog for general use. check-in: 1ad0b9e76b user: mario tags: trunk | |
14:07 | Remove print statement. check-in: cf6b582c7e user: mario tags: trunk | |
09:35 | Implement "buffy" mode for just keeping Xiphs YP.XML in memory once traversed. check-in: 0afbbc5c26 user: mario tags: trunk | |
Changes
Modified contrib/delicast.py from [cf6c41823e] to [2f25207529].
︙ | ︙ | |||
58 59 60 61 62 63 64 | ls = re.findall(""" "pStop\(\)" \s href="(.*?)"> .*? pics/((?!play_triangle)\w+) .*? 120%'>([^<>]+)</span> """, tr, re.X|re.S) | < | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ls = re.findall(""" "pStop\(\)" \s href="(.*?)"> .*? pics/((?!play_triangle)\w+) .*? 120%'>([^<>]+)</span> """, tr, re.X|re.S) if len(ls): homepage, country, title = ls[0] r.append(dict( homepage = homepage, playing = country, title = unhtml(title), url = "urn:delicast", |
︙ | ︙ |