Simple Python 3 library to download, parse and query iCal sources.
Go to file
pre-commit-ci[bot] 524a79a11d [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
2021-10-11 08:03:07 +00:00
.github/workflows [pre-commit.ci] auto fixes from pre-commit.com hooks 2021-10-11 08:03:07 +00:00
docs [pre-commit.ci] auto fixes from pre-commit.com hooks 2021-10-11 08:03:07 +00:00
icalevents Merge branch 'master' into fix-compare-offset-datetimes-error 2021-02-11 16:52:11 +01:00
test [pre-commit.ci] auto fixes from pre-commit.com hooks 2021-10-11 08:03:07 +00:00
.coveragerc [pre-commit.ci] auto fixes from pre-commit.com hooks 2021-10-11 08:03:07 +00:00
.flake8 feat: add black, flake config and pre-commit 2021-10-11 09:49:29 +02:00
.gitignore [pre-commit.ci] auto fixes from pre-commit.com hooks 2021-10-11 08:03:07 +00:00
.pre-commit-config.yaml ci: removes unused ci skip in pre-commit 2021-10-11 10:02:44 +02:00
.travis.yml Update .travis.yml 2019-08-20 08:09:33 +02:00
CONTRIBUTING.md Create CONTRIBUTING.md 2021-09-07 18:51:28 +02:00
LICENSE Create LICENSE 2017-07-19 10:13:44 +02:00
MANIFEST.in PyPi stuff added. 2017-07-19 16:31:38 +02:00
Pipfile feat: uses pipenv and version locking for dependencies 2021-10-11 09:50:07 +02:00
Pipfile.lock feat: uses pipenv and version locking for dependencies 2021-10-11 09:50:07 +02:00
README.md doc: add hint for contribution in readme 2021-10-11 10:01:43 +02:00
main.py Reformated & fix typo 2020-11-10 22:41:09 +05:30
setup.cfg PyPi stuff added. 2017-07-19 16:31:38 +02:00
setup.py update repo url 2021-09-07 19:52:16 +02:00
test.py feat: add support for MONTHLY events with BYDAY clause 2018-09-16 18:16:39 +02:00

README.md

iCalEvents

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

Jazzband

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 pipenv and pre-commit installed and than run.

pre-commit install

Happy contributing!