1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-11 02:42:09 +05:30
gists/python-programming/oneliners/base64_text_decode.py

9 lines
179 B
Python
Raw Normal View History

2024-02-10 15:22:46 +03:00
#!/usr/bin/python3
# base64_text_decode.py
#
# Author: Intel A80486DX2-66
# License: Creative Commons Zero 1.0 Universal
print(__import__("base64").b64decode(input()).decode())