urlencode
Replace special characters in URLs with escape characters.
📝Syntax
new_url = webread(url)
📥Input Arguments
Parameter Description
url a string: URL to a web service.
📤Output Arguments
Parameter Description
new_url a string: encoded url.
📄Description

urlencode replaces special characters in URLs with escape characters.

Special characters in URLs need to be replaced with escape characters. For example, spaces should be replaced with '%20'.

💡Examples
url = 'https://httpbin.org/get?query=hello world';
res = urlencode(url)
🔗See Also
webread
🕔Version History
Version Description
1.11.0 initial version
Edit this page on GitHub