[python] Python Digest, Vol 162, Issue 2
Zdeněk Böhm
zdenek.bohm na seznam.cz
Středa Duben 11 13:58:28 CEST 2018
from urllib.parse import urlparse, urlunparse
def frag2param(url):
res = urlparse(url)
return urlunparse(res[0:4] + ("&".join([val for val in res[4:] if val]),
None))
frag2param("http://test.foo/cosi/page;code?day=0&night=2#param=1")
'http://test.foo/cosi/page;code?day=0&night=2¶m=1'
frag2param("http://test.foo/cosi/page;code#param=1")
'http://test.foo/cosi/page;code?param=1'
frag2param("http://test.foo/cosi/page;code?day=0&night=2")
'http://test.foo/cosi/page;code?day=0&night=2'
frag2param("http://test.foo/cosi/page")
'http://test.foo/cosi/page'
------------- další část ---------------
HTML příloha byla odstraněna...
URL: <http://www.py.cz/pipermail/python/attachments/20180411/c3efbb73/attachment.html>
Další informace o konferenci Python