Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ChenyuRabbitLove
/
MESReport
like
1
Running
App
Files
Files
Community
de7f21d
MESReport
/
utils
/
utils.py
ChenyuRabbitLove
refactor: add utils
de7f21d
about 1 year ago
raw
Copy download link
history
blame
Safe
146 Bytes
def
get_content
(
file_name:
str
) ->
str
:
with
open
(file_name,
"r"
, encoding=
"utf-8"
)
as
file:
content = file.read()
return
content