Я работаю с Python Google Calendar 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 из того, что я знаю.Проблема в том, что я не могу найти способ отформатировать это время для чего-то человеческого, например, «26 декабря, 10:00».
Я много чего пробовал.Я не могу использовать .strftime(), .strptime()
, ни dateutil.parser
Самое многообещающее, что это было сделано: variable = datetime.datetime.strptime (сейчас, 'YY% m-% d% H:% M:% S.% f '). strftime ("% B% d,% Y"), но затем я получаю эту ошибку ..
ValueError: данные времени' 2018-12-13T11: 56: 31.095470Z 'неформат соответствия "% Y-% m-% d% H:% M:% S.% f"
Я искал в Интернете, но нашел только вопрос без ответа