Notigram is a small project, aimed as a productivity-aid tool.
The functionality provided is basically sending notifications from a script or command line, to a Telegram client, so you can be notified about any kind of event through it.
- The tool is composed by 3 parts:
- A CLI interface, which can be used from command line, python module, or http request.
- A Telegram Bot, which will provide a personal token for the user and will deliver the notifications.
- And finally the API, which manages the message requests and the bot.
The API code can be found here on my other repo, in case you want to check out how it works ^^.
The Telegram bot can be found as @notigram_apibot or at https://t.me/notigram_apibot.
pip install notigram
>>> from notigram import ping
>>> ping('<TOKEN>',"You've got a message from python!")
{'response':'result'}
or 🤷♂️
[user@linux ~]$ python -m notigram <TOKEN> Hello from command line! :D
{'response':'result'}
If you aren't using a python program or a command line, you can always send an http post request to the server (https://notigram-api.fly.dev/sendMessage) as well with the following format:
{
"token": "TOKEN",
"message": "The Postman says Hello!"
}