python3 -c ‘from urllib.parse import unquote; print(unquote(input(“> enter URL to decode: “)))’
Category: python3
Generate a secure token using python 3
python3 -c ‘import secrets; print(secrets.token_urlsafe(64))’
Ideas, links, quotes and more
python3 -c ‘from urllib.parse import unquote; print(unquote(input(“> enter URL to decode: “)))’
python3 -c ‘import secrets; print(secrets.token_urlsafe(64))’