Skip to main content

PyBencher is a Python benchmarking module for benchmarking several python functions at once.

Project description

PyBencher

GitHub Release PyPI Downloads GitHub Actions Workflow Status

PyBencher is a simple, decorator-based benchmarking suite for Python. It provides detailed timing statistics (average, median, standard deviation) and supports per-test configuration overrides.

Installation

pip install pybencher

Basic Usage

from pybencher import Suite

suite = Suite()

# Quick registration
@suite.bench()
def my_function():
    return sum(range(10000))

# Per-benchmark configuration
@suite.bench(name="Fast Math", max_itr=5000)
def fast():
    return 1 + 1

# Function arguments via args / kwargs
@suite.bench(args=(10, 20), name="Add")
def add(a, b):
    return a + b

# Manual registration (equivalent to @suite.bench)
def manual_func(n):
    return sum(range(n))

suite.add(manual_func, args=(1000,), name="Manual Register")

# Run and print results
results = suite.run()
results.print()

Configuration Overrides

Any setting in the Suite can be overridden per-benchmark via keyword arguments to bench() or add(). Function inputs are separated cleanly into the args and kwargs parameters.

Override Type Description
name str Display name in reports
timeout float Per-test time limit in seconds
max_itr int Maximum execution count
min_itr int Minimum execution count
cut float Percentage of outliers to trim (0.0 to 0.5)
disable_stdout bool Mute print() output inside the target
verbose bool Include extra stats in results.print()
before callable Local setup hook
after callable Local teardown hook
args tuple Positional arguments for the target function
kwargs dict Keyword arguments for the target function

Reference

Suite

  • timeout (float): Default time limit (10s).
  • max_itr (int): Default max runs (1000).
  • min_itr (int): Default min runs (3).
  • cut (float): Default outlier threshold (0.05).
  • warmup_itr (int): Number of unmeasured runs to perform before benchmarking (0).
  • validate_responses (bool): Enable cross-test output consistency checks (False).
  • validate_limit (int): Max number of iterations to store for full sequence validation (10,000).
  • disable_stdout (bool): Global stdout suppressor.
  • verbose (bool): Global verbosity flag.

BenchmarkResults

  • print(verbose=None): Print results to console.
  • to_json(indent=4): Export results to JSON.
  • to_list(): Export results to list of dicts.

BenchmarkResult

Dataclass containing:

  • name: Target name or custom override.
  • avg, std, median, minimum, maximum: Timing stats in seconds.
  • itr_ps: Iterations per second.
  • iterations: Total runs.
  • counted_iterations: Runs used for stats after trimming outliers.

Example

from pybencher import Suite

suite = Suite()

# 'timeout' here is a benchmark config override, not a function param
@suite.bench(args=(0.1,), name="Sleepy", verbose=True)
def test_sleep(duration):
    import time
    time.sleep(duration)

# Function kwargs stay separate from benchmark config
@suite.bench(kwargs={"timeout": 0.1}, name="Sleepy Alt", verbose=True)
def test_args(timeout):
    import time
    time.sleep(timeout)

results = suite.run()
results.print()

Output:

Sleepy: 100ms/itr | 10.0 itr/s
  std:     120us
  median:  100ms
  min/max: 99ms / 101ms
  runs:    10 (10 counted)
  total:   1.01s

CI/CD Pipeline

PyBencher uses an automated GitHub Actions pipeline:

  • Testing: Every push to any branch triggers a full test suite across Linux, Windows, and macOS for Python 3.10–3.14.
  • Publishing: Pushes to main automatically publish to PyPI if and only if all tests 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

pybencher-2.3.0.tar.gz (44.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybencher-2.3.0-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file pybencher-2.3.0.tar.gz.

File metadata

  • Download URL: pybencher-2.3.0.tar.gz
  • Upload date:
  • Size: 44.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pybencher-2.3.0.tar.gz
Algorithm Hash digest
SHA256 574339cb6d8e73d4d405c091cb8547b5fcd1e673fe4b37571fc349673a95919d
MD5 a2bcffaedb50985222e467c1731baebc
BLAKE2b-256 a6636c37b051b1f2f5ceea92a019c2c60435da6cd0cc2eaed34c9cb0ab70a9e5

See more details on using hashes here.

File details

Details for the file pybencher-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: pybencher-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.12 {"installer":{"name":"uv","version":"0.11.12","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pybencher-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e7966e105b191affc0ec127bf68a0ac78577e5444d7d865567e1f664f537df8b
MD5 db70e3f950ed73c3e4789e2e6677358a
BLAKE2b-256 8e4a4a7e8497f710ea09ffba1cc2b77d89df9bbda3eb386e36c7252f6694e0a0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page