格式 Google 日历事件日期
Format Google Calendar Event Date
我正在使用 Python Google 日历 APi。
代码:
import datetime
from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
# If modifying these scopes, delete the file token.json.
SCOPES = 'https://www.googleapis.com/auth/calendar.readonly'
def main():
"""Shows basic usage of the Google Calendar API.
Prints the start and name of the next 10 events on the user's calendar.
"""
# The file token.json stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
store = file.Storage('token.json')
creds = store.get()
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('credentials.json', SCOPES)
creds = tools.run_flow(flow, store)
service = build('calendar', 'v3', http=creds.authorize(Http()))
# Call the Calendar API
now = datetime.datetime.utcnow().isoformat() + 'Z' # 'Z' indicates UTC time
print('Getting the upcoming 10 events')
events_result = service.events().list(calendarId='primary', timeMin=now,
maxResults=10, singleEvents=True,
orderBy='startTime').execute()
events = events_result.get('items', [])
if not events:
print('No upcoming events found.')
for event in events:
start = event['start'].get('dateTime', event['start'].get('date'))
print(start, event['summary'])
if __name__ == '__main__':
main()
如果运行,输出如下:
2018-12-26T10:00:00+01:00 Event Name
据我所知这是ISO格式。问题是我找不到将时间格式化为“12 月 26 日,10:00”之类的人为格式的方法。
我已经尝试了很多东西。
我不能使用 .strftime(), .strptime()
或 dateutil.parser
最有前途的是:
variable = datetime.datetime.strptime(now, '%Y-%m-%d %H:%M:%S.%f').strftime("%B %d, %Y") 但后来我明白了错误..
ValueError: 时间数据 '2018-12-13T11:56:31.095470Z' 与格式 '%Y-%m-%d %H:%M:%S.%f' 不匹配
我在互联网上搜索过,但只找到了 unanswered question
您可以同时使用 dateutil.parser
和 datetime.datetime.strftime
。
from dateutil.parser import parse as dtparse
from datetime import datetime as dt
start = '2018-12-26T10:00:00+01:00' # Let's say your start value returns this as 'str'
tmfmt = '%d %B, %H:%M %p' # Gives you date-time in the format '26 December, 10:00 AM' as you mentioned
# now use the dtparse to read your event start time and dt.strftime to format it
stime = dt.strftime(dtparse(start), format=tmfmt)
输出:
Out[23]: '26 December, 10:00 AM'
然后使用下面的命令打印事件。
print(stime, event['summary'])
我正在使用 Python Google 日历 APi。
代码:
import datetime
from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
# If modifying these scopes, delete the file token.json.
SCOPES = 'https://www.googleapis.com/auth/calendar.readonly'
def main():
"""Shows basic usage of the Google Calendar API.
Prints the start and name of the next 10 events on the user's calendar.
"""
# The file token.json stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
store = file.Storage('token.json')
creds = store.get()
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('credentials.json', SCOPES)
creds = tools.run_flow(flow, store)
service = build('calendar', 'v3', http=creds.authorize(Http()))
# Call the Calendar API
now = datetime.datetime.utcnow().isoformat() + 'Z' # 'Z' indicates UTC time
print('Getting the upcoming 10 events')
events_result = service.events().list(calendarId='primary', timeMin=now,
maxResults=10, singleEvents=True,
orderBy='startTime').execute()
events = events_result.get('items', [])
if not events:
print('No upcoming events found.')
for event in events:
start = event['start'].get('dateTime', event['start'].get('date'))
print(start, event['summary'])
if __name__ == '__main__':
main()
如果运行,输出如下:
2018-12-26T10:00:00+01:00 Event Name
据我所知这是ISO格式。问题是我找不到将时间格式化为“12 月 26 日,10:00”之类的人为格式的方法。
我已经尝试了很多东西。
我不能使用 .strftime(), .strptime()
或 dateutil.parser
最有前途的是: variable = datetime.datetime.strptime(now, '%Y-%m-%d %H:%M:%S.%f').strftime("%B %d, %Y") 但后来我明白了错误..
ValueError: 时间数据 '2018-12-13T11:56:31.095470Z' 与格式 '%Y-%m-%d %H:%M:%S.%f' 不匹配
我在互联网上搜索过,但只找到了 unanswered question
您可以同时使用 dateutil.parser
和 datetime.datetime.strftime
。
from dateutil.parser import parse as dtparse
from datetime import datetime as dt
start = '2018-12-26T10:00:00+01:00' # Let's say your start value returns this as 'str'
tmfmt = '%d %B, %H:%M %p' # Gives you date-time in the format '26 December, 10:00 AM' as you mentioned
# now use the dtparse to read your event start time and dt.strftime to format it
stime = dt.strftime(dtparse(start), format=tmfmt)
输出:
Out[23]: '26 December, 10:00 AM'
然后使用下面的命令打印事件。
print(stime, event['summary'])