An open API service indexing awesome lists of open source software.

https://github.com/passy/ics-notebook

A Jupyter notebook for analyzing iCalendar files
https://github.com/passy/ics-notebook

Last synced: over 1 year ago
JSON representation

A Jupyter notebook for analyzing iCalendar files

Awesome Lists containing this project

README

          

# iCalendar Notebook

Some very basic statistics for iCalendar/ICS files. You can use your private
Google Calendar Export as input for these.

![](screenshot.png)

## Setup

Docker makes this stuff so easy, I really would strongly recommend against
trying to set up Jupyter and dependencies locally, unless you already have it.

Bash:
```bash
docker run --rm -it -p 8888:8888 -v "$(pwd):/home/jovyan/work" jupyter/scipy-notebook:98f275e5347e
```

Fish:
```fish
docker run --rm -it -p 8888:8888 -v (pwd):/home/jovyan/work jupyter/scipy-notebook:98f275e5347e
```