1
0
Fork 0
Scripts/urld.py

9 lines
164 B
Python
Raw Normal View History

2022-06-03 19:15:31 +02:00
#!/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]))