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
- Host: GitHub
- URL: https://github.com/moevis/py2ifttt
- Owner: moevis
- License: mit
- Created: 2018-04-26T17:01:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-27T05:09:20.000Z (about 8 years ago)
- Last Synced: 2025-09-22T19:40:34.698Z (9 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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')
```