2017-07-19 12:31:33 +00:00
|
|
|
# iCalEvents
|
2017-07-19 08:12:45 +00:00
|
|
|
|
|
|
|
Simple Python 3 library to download, parse and query iCal sources.
|
2017-07-19 12:31:33 +00:00
|
|
|
|
|
|
|
## Build info
|
|
|
|
|
|
|
|
[![Build Status](https://travis-ci.org/irgangla/icalevents.svg?branch=master)](https://travis-ci.org/irgangla/icalevents)
|
|
|
|
|
2017-07-19 12:43:33 +00:00
|
|
|
https://travis-ci.org/irgangla/icalevents
|
|
|
|
|
|
|
|
[![codecov](https://codecov.io/gh/irgangla/icalevents/branch/master/graph/badge.svg)](https://codecov.io/gh/irgangla/icalevents)
|
|
|
|
|
|
|
|
https://codecov.io/gh/irgangla/icalevents
|
|
|
|
|
2017-07-19 12:31:33 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
### iCloud:
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
|
|
|
from icalevents.icalevents import events
|
|
|
|
|
|
|
|
es = events(<iCloud URL>, fix_apple=True)
|
|
|
|
```
|
|
|
|
|
|
|
|
### Google:
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
|
|
|
from icalevents.icalevents import events
|
|
|
|
|
|
|
|
es = events(<Google Calendar URL>)
|
|
|
|
```
|