Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
UcsTurkey
/
flare
like
0
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
bb20239
flare
/
log.py
ciyidogan
proje dosyaları yüklendi
4b9f7d2
3 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
from
datetime
import
datetime
def
log
(
message
):
timestamp = datetime.now().strftime(
"%H:%M:%S"
)
print
(
f"[
{timestamp}
]
{message}
"
, flush=
True
)