Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steeven9/gcal-api
Simple API to fetch events from a Google Calendar using their API and OAuth authentication.
https://github.com/steeven9/gcal-api
api fastapi google google-calendar-api python
Last synced: about 1 month ago
JSON representation
Simple API to fetch events from a Google Calendar using their API and OAuth authentication.
- Host: GitHub
- URL: https://github.com/steeven9/gcal-api
- Owner: Steeven9
- License: gpl-3.0
- Created: 2024-11-10T02:27:40.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-21T17:12:24.000Z (about 1 month ago)
- Last Synced: 2024-11-21T18:23:25.057Z (about 1 month ago)
- Topics: api, fastapi, google, google-calendar-api, python
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gcal-API
Simple API to fetch events from a Google Calendar using their API
and OAuth authentication.Requires `google-auth` `google-auth-oauthlib` `google-api-python-client` `fastapi[standard]`
Needs a Google Calendar API key as env variable `GCAL_API_KEY`.
## Installation
```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```## Run in dev mode
```bash
fastapi dev main.py
```## Run in prod mode
```bash
fastapi run
```