Metadata-Version: 2.1
Name: pyNotifications
Version: 0.0.4
Summary: Python package for sending telegram messages.
Author-email: Iratxe Moya <iratxe.moya@gmail.com>
Project-URL: Homepage, https://github.com/iratxeMoya/PythonNotifications
Project-URL: Bug Tracker, https://github.com/iratxeMoya/PythonNotifications/issues
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md

## Python Notifications

Send telegram messages through python. Telegram bot is needed.

### Usage

```
notifyer = PythonNotifications(token=TOKEN, id=CHAT_ID, appName='test')

notifyer.addMessage('Info test', 'info')
notifyer.addMessage('Warning test', 'warning')
notifyer.addMessage('Error test', 'error')

notifyer.sendMessage('error')
notifyer.sendMessage('warning')
notifyer.sendMessage('info')
```
