I am doing some validation on URLs and I can not find a good example to express the params
part of the returned tuple from urlparse()
.
From https://docs.python.org/2/library/urlparse.html :
>>> from urlparse import urlparse
>>> o = urlparse('http://www.cwi.nl:80/%7Eguido/Python.html')
>>> o
ParseResult(scheme='http', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
params='', query='', fragment='')
I have done my best, SO and Goog searches are not finding success.