Last active
September 26, 2024 13:50
-
-
Save froi/eefad92273f2a012d33f23c97f7f6f83 to your computer and use it in GitHub Desktop.
Decode URLs with Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib.parse | |
encoded_url="" | |
decoded_url=urllib.parse.unquote(encoded_url) | |
print(f"URL has been decoded: {decoded_url}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment