Skip to main content

Generate Push Notifications to IFTTT from Python

Project description

PushNotif

Want to get notified on your phone when your code has executed? This is a simple tool to generate a Push Notification to your IFTTT app.

QuickStart

Setting Up IFTTT Applet

  1. Sign up for an IFTTT account.
  2. Go to the Create section.
  3. Click on Add for If This and choose "Webhooks".
  4. Choose the first option for Receive a web request.
  5. Give this event any name, for example, "Notifier", and click on Create triger.
  6. Click on Add for Then That and choose "Notifications".
  7. Click on the first option for Send a notification from the IFTTT app.
  8. Type a message that you want to accompany your notification. Here, you can also add an option for sending variables from runtime when you run code. Click on Add ingredient and choose any of the three Value variables. You can also use the EventName to add the name of the event in the notification and OccurredAt to get the time when the event occurred.

For example,

Message Syntax

{{EventName}} : Your Code has executed with message {{Value1}} at {{OccurredAt}}

Message Output

Notifier : Your Code has executed with message "Model Finished Training" at September 9, 2021 at 07:51PM
  1. Click on Continue. Write a Title for your Applet and click on Finish.
  2. Go to the Webhook Documentations to get your key. You will use this key to intialize your code.
11. Download the IFTTT app for **[Android](https://play.google.com/store/apps/details?id=com.ifttt.ifttt&hl=en_US&gl=US)** | **[iPhone](https://apps.apple.com/us/app/ifttt/id660944635)**

Execution

pip install pushnotif

Run the following with your event URL that you got when setting up IFTTT in step 10.

from pushnotif import PushNotif

handler = PushNotif(key = <your_key>, event = <your_event>)

...

model.fit(...)

...

handler.send("Model Trained")

You can put the handler.send() method at the end of any cell you want to be notified for after execution.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pushnotif-0.0.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

pushnotif-0.0.1-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page