Skip to content

Instantly share code, notes, and snippets.

@Zmey56
Created August 30, 2022 07:55
Show Gist options
  • Save Zmey56/cb48f6ff1dced8aaf3451c21b685c5b9 to your computer and use it in GitHub Desktop.
Save Zmey56/cb48f6ff1dced8aaf3451c21b685c5b9 to your computer and use it in GitHub Desktop.
@staticmethod
def today():
current_date = datetime.datetime.now()
return {'day': current_date.day,
'month': current_date.month,
'year': current_date.year,
'hour': current_date.hour,
'minute': current_date.minute,
'second': current_date.second}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment