解决方案
base64
#!/usr/bin/python3 import base64 coded_string = '''Q5YACgA...''' plain_text = base64.b64decode(coded_string)
参考文献
Python base64 data decode – Stack Overflow
#!/usr/bin/python3 import base64 coded_string = '''Q5YACgA...''' plain_text = base64.b64decode(coded_string)
Python base64 data decode – Stack Overflow