Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/voidful/telenotify
https://github.com/voidful/telenotify
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/voidful/telenotify
- Owner: voidful
- Created: 2022-03-03T03:47:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-02T12:18:21.000Z (over 1 year ago)
- Last Synced: 2024-07-06T14:45:32.560Z (4 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Telenotify
## install
`pip install telenotify`
## example usage
```python
from telenotify import Telenotifyclass CustomNotify(Telenotify):
def get_update(self):
return "woof!!"CustomNotify("token", 60)
```