python - Percent signs in url -
is possible change url contains percent signs like
http%3a%2f%2funiversities.ac%2fshow_article.php%3fid%3d61&
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&')
Comments
Post a Comment