Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #69147 > unrolled thread

Re: datetime

Started byPeter Otten <__peter__@web.de>
First post2014-03-26 22:33 +0100
Last post2014-03-26 22:33 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: datetime Peter Otten <__peter__@web.de> - 2014-03-26 22:33 +0100

#69147 — Re: datetime

FromPeter Otten <__peter__@web.de>
Date2014-03-26 22:33 +0100
SubjectRe: datetime
Message-ID<mailman.8590.1395869628.18130.python-list@python.org>
Victor Engle wrote:

> I want to keep a collection of data organized by collection date and I'll
> use datetime like this...
> 
>>>> datetime.date.today()
> 
> datetime.date(2014, 3, 26)
> 
> 
> I'll format the date and create directories like /mydata/yyyy-mm-dd
> 
> 
> When I create a directory for today, I need to know the directory name for
> yesterday and tomorrow. In perl I could get seconds since the epoch using
> time and then add or subtract from that number for tomorrow or yesterday
> and feed that into localtime to get the date string.
> 
> 
> It would be convenient if  datetime.date.today() accepted an argument as
> an offset from today, like datetime.date.today(-1). Is there an easy way
> to do this with datetime?

>>> import datetime
>>> ONE_DAY = datetime.timedelta(days=1)
>>> today = datetime.date.today()
>>> today
datetime.date(2014, 3, 26)
>>> today - ONE_DAY
datetime.date(2014, 3, 25)
>>> today + ONE_DAY
datetime.date(2014, 3, 27)

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web