Skip to main content

Native utilities based only on python builtins. Timers, Decorators.

Project description

Readme of yasiu-native

Module with useful measure time decorators.

Installation

pip install yasiu-native

Time decorators

  • measure_perf_time_decorator

    decorator that measures time using time.perf_counter

  • measure_real_time_decorator

    decorator that measures time using time.time

Measuring time

from yasiu_native.time import measure_perf_time_decorator


@measure_perf_time_decorator()
def func():
    ...


@measure_perf_time_decorator(">4.1f")
def func():
    ...


@measure_perf_time_decorator(fmt=">4.1f")
def func():
    ...

Print buffering will impact your performance!

  • Use with caution for multiple function calls

Flexible decorator

Decorator that checks if decorated function was passed with () or not

from yasiu_native.decorators import flexible_decorator


@flexible_decorator
def custom_decorator(func, decor_variable):
    def wrapper(*a, **kw):
        print(f"Decorated with {decor_variable}")
        return func(*a, **kw)

    return wrapper


@custom_decorator
def test_1():
    pass


@custom_decorator()
def test_2():
    pass


@custom_decorator(a=1)
def test_3(a=0):
    pass

Console execution timer

not here yet.

All packages

1. Native Package

2. Math Package

3. Image Package

4. Pyplot visualisation Package

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

yasiu-native-0.1.1.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

yasiu_native-0.1.1-py3-none-any.whl (4.4 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