1
0
Fork 0
Scripts/urld.py
2022-06-03 19:15:38 +02:00

9 lines
164 B
Python
Executable file

#!/usr/bin/env python3
# Delicate URL decoding of whatever string is passed as argument.
import sys
import urllib.parse
print(urllib.parse.unquote(sys.argv[1]))