Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Omnibus-archive
/
Functions
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Functions
/
timedate.py
Omnibus
Create timedate.py
bf4ee32
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
173 Bytes
import
datetime
def
timename
():
timestamp=
str
(datetime.datetime.now())
timename=timestamp.replace(
" "
,
"--"
).replace(
":"
,
"-"
).replace(
"."
,
"-"
)
return
(timename)