🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

oryks-google-calendar

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oryks-google-calendar

A python library that wraps around the Google calendar API. You can use it to schedule events using google calendar.

0.3.1
PyPI
Maintainers
1

google-calendar

Overview

A python library for working with the google calendar. Allows the developer to programatically perform the following tasks:

  • Schedule an event
  • Find all scheduled events
  • Search for specific scheduled events
  • Delete or update scheduled events
  • Create calendars

Getting started

Tou use this library, you will need a Google (GMail) Account and Google Credentials. Follow the instructions in this short article to get an API key.

Installing the library

pip install oryks-google-calendar

Schedulin an event

from google_calendar import GoogleCalendar

client_secret: str = 'client_secret.json'
google_calendar: GoogleCalendar = GoogleCalendar(secret_file=client_secret)
google_calendar.authenticate()

print(google_calendar.quick_add('Meeting with emmanuel at 10.00 am tommorrow.'))

Keywords

calendar

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts