mirror of
https://github.com/yv1ing/MollyAudit.git
synced 2025-09-16 14:55:50 +08:00
8 lines
143 B
Python
8 lines
143 B
Python
import datetime
|
|
|
|
|
|
def get_now_date():
|
|
now = datetime.datetime.now()
|
|
formatted = now.strftime("%Y-%m-%d %H:%M:%S")
|
|
return formatted
|