python - Percent signs in url -


is possible change url contains percent signs like

 http%3a%2f%2funiversities.ac%2fshow_article.php%3fid%3d61&amp 

to normal url readable human like

http://universities.ac/show_article.php?id=61 

using selenium?

this doesn't have selenium. can use urlparse module in standard library.

from urlparse import unquote      # python2 urllib.parse import unquote  # python3 unquote('http%3a%2f%2funiversities.ac%2fshow_article.php%3fid%3d61&amp') 

Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -