1
0
Fork 0
This commit is contained in:
dece 2022-06-03 19:15:31 +02:00
parent d7d4d47814
commit ac33515690

8
urld.py Executable file
View file

@ -0,0 +1,8 @@
#!/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]))