Spaces:
Sleeping
Sleeping
File size: 435 Bytes
8842640 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from src.helpers.data_loaders import load_places
# TODO add the gcp application json file loading
# TODO examples
def load_html_from_file(file_path: str) -> str:
"""
Reads the HTML content from a file and returns it as a string.
Args:
file_path (str): The path to the HTML file.
Returns:
str: The HTML content of the file.
"""
with open(file_path, 'r') as file:
return file.read()
|