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 -

how to prompt save As Box in Excel Interlop c# MVC 4 -

xslt 1.0 - How to access or retrieve mets content of an item from another item? -