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
- Host: GitHub
- URL: https://github.com/passy/ics-notebook
- Owner: passy
- License: mit
- Created: 2016-06-19T15:52:44.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-01T12:53:27.000Z (almost 10 years ago)
- Last Synced: 2025-02-04T20:45:41.017Z (over 1 year ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 149 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.markdown
- License: LICENSE
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.

## 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
```