Skip to content

Instantly share code, notes, and snippets.

@froi
Created February 28, 2024 18:33
Show Gist options
  • Save froi/eefad92273f2a012d33f23c97f7f6f83 to your computer and use it in GitHub Desktop.
Save froi/eefad92273f2a012d33f23c97f7f6f83 to your computer and use it in GitHub Desktop.
Decode URLs with Python
import urllib.parse
encoded_url=""
decoded_url=urllib.parse.unqoute(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