Onionr/onionr/utils/readstatic.py

13 lines
346 B
Python
Raw Normal View History

2019-07-18 17:40:48 +00:00
import os
2019-07-30 05:19:22 +00:00
def get_static_dir():
return os.path.dirname(os.path.realpath(__file__)) + '/../static-data/'
def read_static(file:str, ret_bin:bool=False)->str:
2019-07-30 05:19:22 +00:00
static_file = get_static_dir() + file
2019-07-18 17:40:48 +00:00
if ret_bin:
mode = 'rb'
else:
mode = 'r'
with open(static_file, mode) as f:
data = f.read()
return data