Skip to main content

This project aims to facilitate the execution of codes before and after a method using decorator.

Project description

This project aims to facilitate the execution of codes before and after a method using decorator. the Decorator @PreEL and @PosEL accept as input codes to run, you can use simple codes as a logging or else more complex codes written by you.

Installing

Install and update using pip :

pip install PyEL

A Simple Example

from pyel import PreEL

@PreEL('logging.info("Potato")')
def function():
    pass

Example with variables

from pyel import PreEL

@PreEL('logging.error("Log:{}".format(#param))')
def function(param):
    pass

Example with your code

from pyel import PosEL

@PosEL('yourpackage.subpackage.yourfunction(#param)')
def function(param):
    pass

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

PyEL-0.0.2.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

PyEL-0.0.2-py3-none-any.whl (6.7 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