Skip to content

Releases: enmanuelmag/notify_function

Notify 1.5.2

13 Jul 08:50
Compare
Choose a tag to compare
v1.5.2

Update realease

Notify 1.5.0

13 Jul 07:42
Compare
Choose a tag to compare

Update URL for email sender and add discord_webhook as dependecy

Notify 1.4.0

08 Jan 20:19
36028f6
Compare
Choose a tag to compare

Removed:

  • Notification toast on windows

Notify 1.3.0

24 Aug 01:51
Compare
Choose a tag to compare

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

07 Aug 21:18
58c716e
Compare
Choose a tag to compare

Fix payload title to email

Notify 1.2.1

07 Aug 21:12
19d46c7
Compare
Choose a tag to compare

Fix payload to send email client

Notify 1.2.0

06 Aug 22:29
Compare
Choose a tag to compare

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

06 Aug 16:28
Compare
Choose a tag to compare

Now can set webhook to send message to discord channel. Example code:

from notifier import notify

@notify(webhook_url='link')
def test():
    return 'Hello World'

test()

Example of execution without error:
imagen

Example of execution with error:
imagen

Notify 1.0.5

06 Aug 05:28
Compare
Choose a tag to compare

Fix minor bugs

Notify 1.0.4

06 Aug 05:21
Compare
Choose a tag to compare

Fix way to import, now import and usage is:

from notifer import notify

@notify()
def your_function():
    print('Hello World!')