1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-12 22:45:54 +05:30

Python: add base64_text_decode.py

This commit is contained in:
Intel A80486DX2-66 2024-02-10 15:22:46 +03:00
parent 45f76698a6
commit 07cadd5e87
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -0,0 +1,8 @@
#!/usr/bin/python3
# base64_text_decode.py
#
# Author: Intel A80486DX2-66
# License: Creative Commons Zero 1.0 Universal
print(__import__("base64").b64decode(input()).decode())