icalevents/README.md

28 wiersze
450 B
Markdown
Czysty Zwykły widok Historia

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