Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
joselobenitezg
/
obtu-ai
like
8
Running
App
Files
Files
Community
main
obtu-ai
/
utils
/
file_utils.py
Jose Benitez
clean code
025cc15
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
165 Bytes
# Load static files
def
load_file_content
(
file_path
):
if
file_path.is_file():
with
file_path.
open
()
as
file:
return
file.read()
return
""