apisforft / helper.py
laxsvips's picture
Initial Commit
3951b78
raw
history blame
111 Bytes
def open_file(filepath):
with open(filepath, 'r', encoding='utf-8') as infile:
return infile.read()