ClientTest / pages /load_page.py
zinoubm's picture
final touches
2f9dcad
raw
history blame contribute delete
109 Bytes
def load_page(path):
with open(path, "r") as file:
html_text = file.read()
return html_text