Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Created June 8, 2019 12:55
Show Gist options
  • Save ezirmusitua/b9f504a54c90edd88629aa6191b532da to your computer and use it in GitHub Desktop.
Save ezirmusitua/b9f504a54c90edd88629aa6191b532da to your computer and use it in GitHub Desktop.
[Convert seconds to date time string] #python #time
def seconds_to_datetime_str(seconds: str, format: str = '%Y-%m-%d'):
return time.strftime(format, time.gmtime(seconds))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment