Releases: enmanuelmag/notify_function
Releases · enmanuelmag/notify_function
Notify 1.5.2
v1.5.2 Update realease
Notify 1.5.0
Update URL for email sender and add discord_webhook as dependecy
Notify 1.4.0
Removed:
- Notification toast on windows
Notify 1.3.0
Now are a new method to send a notify. You need to create a class and call the instance returned by the constructor, like in the following example:
from notifier import Notifier
notifier = Notifier()
notifier()
Notify 1.2.2
Fix payload title to email
Notify 1.2.1
Fix payload to send email client
Notify 1.2.0
Add support to send message to Telegram. Example code:
@notify(chat_id=111111111, api_token='api-token-of-your-bot')
def test():
return 2 / 2
Notify 1.1.0
Notify 1.0.5
Fix minor bugs
Notify 1.0.4
Fix way to import, now import and usage is:
from notifer import notify
@notify()
def your_function():
print('Hello World!')