Encode URL in JavaScript?
Check out the built-in function encodeURIComponent(str) and encodeURI(str).In your case, this should work:
Check out the built-in function encodeURIComponent(str) and encodeURI(str).In your case, this should work:
You need to pass your parameters into urlencode() as either a mapping (dict), or a sequence of 2-tuples, like: Python 3 or above Use: Note that this does not do url encoding in the commonly used sense (look at the output). For that use urllib.parse.quote_plus.