Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

mitinarseny/aiogc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aiogc

Async Google Calendar API Client for Python 3

Installation

Run this in your terminal:

pip install aiogc

Usage

Following code prints summary and start and end datetimes of upcoming events within nearest 5 days.

import asyncio
import datetime

import aiohttp

from aiogc import events, models

c = models.Credentials(
	client_id='<your_client_id>',
    client_secret='<your_client_secret>',
    scopes=['<your_scope1>', 'your_scope2'],
    refresh_token='<your_refresh_token>'
)

async def main():
	async with aiohttp.ClientSession() as s:
		es = await events.list(
			calendar_id='<your_calendar_id>',
			credentials=c,
			session=s,
			singleEvents='true',
			timeMin=datetime.datetime.now().isoformat(),
			timeMax=(datetime.datetime.now() + datetime.timedelta(days=5)).isoformat(),
			orderBy='startTime',
		)
		for e in es:
			print(f'{e.summary}:\n{e.start.dateTime}{e.end.dateTime}')

if __name__=='__main__':
	loop = asyncio.get_event_loop()
	loop.run_until_complete(main())

About

Async Google Calendar API Client for Python 3

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages