Hi...
I'm sure I should know this but I don't.
I'd like to do a select using a timedelta. I.e. I'd like one of the
parameters to be that it was updated in the last week.
Here's what I have so far:
timed = timedelta(days=7)
rrunning = list(RRun.select(AND(RRun.q.progressID == 1,
On Saturday 01 March 2008 13:07:38 Sam's Lists wrote:
> I'd like to do a select using a timedelta. I.e. I'd like one of the
> parameters to be that it was updated in the last week.
Here's the way I'd do it:
cutoff = datetime.datetime.now() - datetime.timedelta(days=7)
rrunning = list(RRun.select(