Simple Python 3 library to download, parse and query iCal sources.
Go to file
Tom Daff 062fb93951 Convert RRULE UNTIL with no tzinfo to UTC
Since DTSTART is always given tzinfo, any UNTIL in an RRULE
must be tz-aware and in UTC.

See: irgangla/icalevents#47
2019-04-02 10:26:46 +01:00
icalevents Convert RRULE UNTIL with no tzinfo to UTC 2019-04-02 10:26:46 +01:00
source
test Convert RRULE UNTIL with no tzinfo to UTC 2019-04-02 10:26:46 +01:00
.coveragerc
.gitignore
.travis.yml
LICENSE
MANIFEST.in
Makefile
README.md
main.py
make.bat
requirements.txt
setup.cfg
setup.py
test.py

README.md

iCalEvents

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

Build info

Build Status

https://travis-ci.org/irgangla/icalevents

codecov

https://codecov.io/gh/irgangla/icalevents

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>)