An open API service indexing awesome lists of open source software.

https://github.com/moevis/py2ifttt

An interface for triggering ifttt webhooks
https://github.com/moevis/py2ifttt

Last synced: 5 months ago
JSON representation

An interface for triggering ifttt webhooks

Awesome Lists containing this project

README

          

# Python to IFTTT
## A simple interface for triggering IFTTT webhooks
________
## Installation

```bash
pip install py2ifttt
```

## Usage

```python
from py2ifttt import IFTTT

ifttt = IFTTT('your key str', 'event_name')
ifttt.notify('value1', 'value2', 'value3')
```