Skip to main content

Profile a function using a simple decorator

Project description

function_profile decorator

Provides decorator for time and memory profiling of functions.

Metrics:

  • time - time for a single function call

  • memory - peak memory used by the function. The peak memory is the difference between the starting minimum value, and the highest value.

Usage:

from function_profile import profile

@profile(time_prof=True, mem_prof=True)
def factoriel_loop(n: int) -> int:
    """Calculate factoriel non-recursive."""
    fac: int = 1
    for i in range(1, n + 1):
        fac = fac * i
    return fac

factoriel_loop(n=100)

Output:

factoriel_loop(, n=100)

Time 0.00001450

Memory 0.0546875

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

func-profile-decor-0.1.4-1.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

func_profile_decor-0.1.4.post1-py3-none-any.whl (3.9 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