mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
12 lines
265 B
Python
12 lines
265 B
Python
import re
|
|
|
|
PATTERN = re.compile('<a href="javascript:void\(null\);" onclick="\s*play\(this,\'(http://lp3.polskieradio.pl/_files/mp3/.*mp3)\'\);\s*">')
|
|
|
|
def zamien(m):
|
|
|
|
return '<a href="' + m.group(1) + '">'
|
|
|
|
def lp3(html):
|
|
|
|
return PATTERN.sub(zamien, html)
|