inform-me

The aim of this library is to automatically notify the developer as soon as a time-consuming program execution gets completed.


Keywords
Sound, Alert, Notification, Timer, Code, Execution, Completion, Popup, Message
License
MIT
Install
pip install inform-me==0.1.2

Documentation

inform_me

inform_me Build OS GitHub license Format Status Python Open Source Love svg2

inform_me is an alert raising python library that is specially designed to be used in machine learning projects during the model training stage. It triggers a Sound, Notification Box, and Popup Message alert as soon as it is executed, giving out a notification that the high-computation/time-consuming piece of code (eg. Deep Learning Model training, Web Scraper, etc) above it was successfully executed. The aim of this library is to automatically notify the developer as soon as a time-consuming program execution gets completed. As of now, this library only supports Linux distributions and does not work on Windows or macOS. It makes use of carefully selected Python's Standard Library modules which are efficient and do not stall the execution of the running program. Supports Python 3.6 and later but should work on previous versions of Python 3.x

Installation

To install this package, use the following pip command from the terminal:

pip install inform_me

Usage

The main purpose of inform_me is to raise an alert as soon as it gets executed. It can raise three types of alerts:

  1. Beep Sound
  2. System Notification Message
  3. Pop-up Information Message

By default, all three alerts are raise but can be customized by passing specific method arguments.

import inform_me as im

#
# A piece of code that would take a long time to complete its execution.
#

im.inform(sound_duration=0.5, notification=True, popup=True, message='Your process has completed!')
#sound_duration: Time in seconds till which the beep alarm will sound.
#notification: Boolean value stating whether to show notification alert.
#popup: Boolean value stating whether to show pop-up message alert.
#message: The message to be displayed in notification and pop-up.

The inform method would get called after the time-consuming code completes its execution. As soon as the im.inform method is called, it would trigger a system-wide alert letting the developer know that the time-consuming code has been completely executed (i.e. the model has been trained or webpage has been scraped, etc.)

Another feature of inform_me is the 'inform_after' method which raises an alert after the specified amount of time (in seconds and minutes). It could come handy if the user is taking a break from work (by switching to some other task or window) and would like to return to it after a specific amount of time. This method allows the user to specify the time in minutes and seconds along with a custom message which gets displayed after the time lapses. This method can serve as a reminder tool as well.

import inform_me as im

im.inform_after(seconds=10, minutes=0, notification=True, popup=True, message=None):
#seconds: Time in seconds after which the alarm would sound.
#notification: Boolean value stating whether to show notification alert.
#popup: Boolean value stating whether to show pop-up message alert.
#message: The message to be displayed when time lapses.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT