2017-06-27 51 views
0

我收到了我的Google日曆列表,但我想限制該日期區域中的集合。我有一個「現在」是這樣的:Python,Google日曆定義了一個日期區域

now = datetime.datetime.utcnow().isoformat() + 'Z' 

我想是這樣的:

end = the end of the day of now 

但我不知道怎麼辦呢,你有什麼想法? 我使用的類似列表:

response = calendar.events().list(calendarId='primary', timeMin=now).execute() 

謝謝!

回答

0
end = datetime.datetime.utcnow().replace(hour=0, minute=0,second=0) + datetime.timedelta(hours=24) 

datetime.datetime.utcnow().replace(hour=0, minute=0,second=0)讓你開始這一天的的,然後加入24小時。

+0

謝謝!但你知道我是如何告訴我的嗎?因爲沒有timeMax,或者我沒有找到它...... –

+0

很明顯,你現在正在這樣做 - 在'end'上調用'.isoformat()',追加''Z''和就是這樣:'response = calendar.events()。list(calendarId ='primary',timeMin = end.isoformat()+'Z')。execute()';如果這不是你的意思,你需要更清楚地解釋你的目標。 –

+0

好的,謝謝你,我在想我必須有時間最小和最大的反應!現在更清楚了! –