Simple Python 3 library to download, parse and query iCal sources.
Go to file
Martin Eigenmann 216d0fa412
docs: add read-the-docs config
2024-09-09 12:47:57 +02:00
.github/workflows ci: disable codecov upload - do not fail 2024-09-09 12:31:20 +02:00
docs docs: add read-the-docs config 2024-09-09 12:47:57 +02:00
icalevents fix: allow short timewindows to parse events 2024-09-09 12:16:40 +02:00
test fix: allow short timewindows to parse events 2024-09-09 12:16:40 +02:00
.coveragerc
.flake8
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml docs: add read-the-docs config 2024-09-09 12:47:57 +02:00
.travis.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
main.py
poetry.lock
pyproject.toml
setup.cfg
setup.py
test.py

README.md

iCalEvents

Simple Python 3 library to download, parse and query iCal sources.

PyPI versionJazzband

Build info

last push: run pytest

master: Run pytest

Documentation

https://icalevents.readthedocs.io/en/latest/

Usage

iCloud:


from icalevents.icalevents import events

es  = events(<iCloud URL>, fix_apple=True)

Google:


from icalevents.icalevents import events

es  = events(<Google Calendar URL>)

Contributing

You will need poetry and pre-commit installed and than run.

pre-commit install

Happy contributing!