开发者

How to check if datetime is older than 20 seconds

开发者 https://www.devze.com 2022-12-22 08:56 出处:网络
This is my first time here so I hope I post this question at the right place. :) I need to build flood control for my script but I\'m not good at all this datetime to time conversions with UTC and st

This is my first time here so I hope I post this question at the right place. :)

I need to build flood control for my script but I'm not good at all this datetime to time conversions with UTC and stuff. I hope you can help me out. I'm using the Google App Engine with Python. I've got a datetimeproperty at the DataStore database which should be checked if it's older than 20 seconds, then proceed.

Could anybody help me out?开发者_StackOverflow中文版

So in semi-psuedo:

q = db.GqlQuery("SELECT * FROM Kudo WHERE fromuser = :1", user)
lastplus = q.get()

if lastplus.date is older than 20 seconds:
print"Go!"


You can use the datetime.timedelta datatype, like this:

import datetime
lastplus = q.get()
if lastplus.date < datetime.datetime.now()-datetime.timedelta(seconds=20):
    print "Go"

Read more about it here: http://docs.python.org/library/datetime.html

Cheers,

Philip


Try this:

from datetime import timedelta, datetime
if lastplus.date < datetime.utcnow() + timedelta(seconds = -20):
    print "fee fie fo foo!"
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号