Lessons learned in developing some useful things.
Keep looking, Don't settle.
import base64 with open('./image.png', 'rb') as img: base64_string = base64.b64encode(img.read())
import base64 from PIL import Image from io image BytesIO import matplotlib.pyplot as plt img = Image.open(BytesIO(base64.b64decode(base64_string))) plt.imshow(img)