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

swift - Button on Table View Cell connected to local function -

dns - Dokku server hosts two sites with TLD's, both domains are landing on only one app -

c# - ajax - How to receive data both html and json from server? -