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

https://github.com/voidful/telenotify


https://github.com/voidful/telenotify

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# Telenotify

## install

`pip install telenotify`

## example usage

```python
from telenotify import Telenotify

class CustomNotify(Telenotify):
def get_update(self):
return "woof!!"

CustomNotify("token", 60)
```