Final_Assignment_Template / global_functions.py
ArseniyPerchik's picture
Clean state
45b200f
raw
history blame
304 Bytes
from globals import *
# ------------------------------------------------------ #
# GENERAL FUNCTIONS
# ------------------------------------------------------ #
def encode_image(image_path):
with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode('utf-8')