Socket
Socket
Sign inDemoInstall

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.


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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc