Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get formatted date time in python

Tags:

python

linux

I want my Linux Filename like this

May-01-0340AM-2011.tar

How can i get the date variable formatted like above in Python

IN bash i write

date1=$(date +"%b-%d-%I%M%p-%G")
like image 285
Mahakaal Avatar asked May 16 '11 12:05

Mahakaal


2 Answers

You can use the same formatting string in strftime on a datetime object:

>>> import datetime
>>> datetime.datetime.now().strftime('%b-%d-%I%M%p-%G')
'May-16-0245PM-2011'

Incidentally, I'd just like to put a word in for the joy of ISO-8601 date formatting

like image 195
Mark Longair Avatar answered Oct 08 '22 18:10

Mark Longair


Same formatting, using strftime():

>>> import datetime
>>> datetime.datetime.now().strftime('%b-%d-%I%M%p-%G')
'May-16-1050PM-2011'

To get your filename, it's as simple as:

 >>> datetime.datetime.now().strftime('%b-%d-%I%M%p-%G') + '.tar'
'May-16-1050PM-2011.tar'
like image 30
Johnsyweb Avatar answered Oct 08 '22 19:10

Johnsyweb