Skip to content

Instantly share code, notes, and snippets.

@igorvolnyi
Last active October 20, 2018 00:22
Show Gist options
  • Save igorvolnyi/fa85908a6a130c3ec715de43dd3ba266 to your computer and use it in GitHub Desktop.
Save igorvolnyi/fa85908a6a130c3ec715de43dd3ba266 to your computer and use it in GitHub Desktop.
urldecode
#! /usr/bin/python3
import sys
from urllib.parse import unquote
print(unquote(sys.argv[1]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment