Skip to content

Instantly share code, notes, and snippets.

@spawnmarvel
Created July 17, 2023 17:01
Show Gist options
  • Save spawnmarvel/15d124a63030c5743c50895926d1e221 to your computer and use it in GitHub Desktop.
Save spawnmarvel/15d124a63030c5743c50895926d1e221 to your computer and use it in GitHub Desktop.
Url encode in Python
import urllib.parse
# abcde/fghi+jklmn=opq
# abcde%2Ffghi%2Bjklmn%3Dopq
inp = "abcde/fghi+jklmn=opq"
print(inp)
rv = urllib.parse.quote(inp, safe='')
print(rv)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment