Skip to main content

A decorator for monitoring your task

Project description

py_reminder

This is a Python package that can send email for various purpose.

Introduction

Often times we have some time-consuming task, and we want to leave it run alone without staring at the screen for 7*24 hours.

This package will offer you a simplified experience of sending you email report with customized information.

Installation

pip install -U py_reminder

Initial configuration

You will suggest to use a unimportant mail box to receive message, since the password is going to store in plain text. (or if someone knows how to encrypt, please help!)

For the first time, you should specify configuration

from py_reminder import config

config(address='daveting@example.com',
       password='123456',
       smtp='smtp.example.com',
       port=999,
       default_to='daveting@example.com')

You can ignore default_to. It will set to be the same as address by default.

If you receive a testing email, then the configuration is done. You can never include this code thereafter.

Sample code

from py_reminder import monitor

@monitor(task='do something', to='receiver@example.com')
def foo()
  time.sleep(10)
  return 0

foo() 

You can ignore to if you send to your default receiver. So the most simple way to use this decorator is:

@monitor('do something')

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

py_reminder-0.0.1.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

py_reminder-0.0.1-py3-none-any.whl (4.1 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