Spaces:
Runtime error
Runtime error
File size: 109 Bytes
2f9dcad |
1 2 3 4 5 6 |
def load_page(path):
with open(path, "r") as file:
html_text = file.read()
return html_text
|