Skip to main content

Lightweight package that makes it easy to measure how much time it takes to run Python programs and gauge performance of multiple, smaller bits of code

Project description

Latest version Python 3.10 | 3.11 | 3.12 | 3.13 | 3.14+ MIT license Codecov CodeQL Test Downloads

⏳ Timer for Python ⌛️

Lightweight Python package that makes it easy to measure how much time it takes to run Python programs and gauge performance of multiple, smaller bits of code.

Ready to try? Learn how to install and find tutorials in the user guide.

Getting Started

Basics

Simply add the Timer to your imports, and then wrap the Timer function around your code to measure the performance of the executed block of code:

from timer import Timer

timer = Timer()
timer.start()

# Insert your code here

timer.stop() # Output example: 12.34 seconds

Context Manager

Alternatively, use the with statement. This will automatically start and stop the clock – and so no need to declare timer.start() and timer.stop(). Same result as before, but less code:

with Timer():
    # Insert your code here

    # Output example: 12.34 seconds

Decorator

Or use the function_timer as a function decorator:

from timer import function_timer

@function_timer()
def test_function():
    # Insert your code here

test_function()

# Output example: 12.34 seconds for thread TEST_FUNCTION

Core Features

Decimals

Instead of the default value of 2 for decimals``, you can set the output precision up to 9in thedecimals` parameter:

timer = Timer()
timer.start(decimals=5)

# Insert your code here

timer.stop() # Output example: 0.12345 seconds

Multiple Threads

Imagine that you want to troubleshoot which parts of your code are performing better or worse. Or do you want to split-test the performance of different methods? Timer for Python is a quick, easy way to get the job done.

To measure the performance of multiple blocks of code, use the thread parameter to name different threads:

timer = Timer()
timer.start(thread="A")

# Insert your code here

    timer.start(thread="B", decimals=5)

    # Insert more code here

    timer.stop(thread="B") # Output example: 0.12345 seconds for thread B

# Insert even more code here

timer.stop(thread="A") # Output example: 6.78 seconds for thread A

Or use the with statement to get the same result with less code:

with Timer(thread="A")
    # Insert your code here

    with Timer(thread="B", decimals=5):
        # Insert more code here

        # Output example: 0.12345 seconds for thread B

    # Insert even more code here

    # Output example: 6.78 seconds for thread A

Become a Sponsor 🏅

If you find this project helpful, please consider supporting its development. Your donations will help keep it alive and growing. Every contribution makes a difference, whether you buy a coffee or support with a monthly donation. Find your tier here:

Donate on GitHub Sponsors

Thank you for your support! 🙌

Contribute

If you have suggestions or changes to the module, feel free to add to the code and create a pull request.

Report Bugs

If you encounter any issues, you can report them as bugs or raise issues.

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

timer_for_python-0.9.10.tar.gz (10.7 kB view details)

Uploaded Source

Built Distribution

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

timer_for_python-0.9.10-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file timer_for_python-0.9.10.tar.gz.

File metadata

  • Download URL: timer_for_python-0.9.10.tar.gz
  • Upload date:
  • Size: 10.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for timer_for_python-0.9.10.tar.gz
Algorithm Hash digest
SHA256 9bf7f81b3c1ded9410e2d2a2b880c7d23a9d8e9153367f1829598ac039a6e050
MD5 598b886df5fcbada8759b2ad5a064199
BLAKE2b-256 074d3e00d4b77b784f6597ee547f4adf5f8d156e0c6c68ccc4f9b8137e449beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for timer_for_python-0.9.10.tar.gz:

Publisher: release.yml on jakob-bagterp/timer-for-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file timer_for_python-0.9.10-py3-none-any.whl.

File metadata

File hashes

Hashes for timer_for_python-0.9.10-py3-none-any.whl
Algorithm Hash digest
SHA256 7b5003bd7d1c74911b711717c0fc288eba3b2fdb5ce6b57fca7df4adff07a05a
MD5 d78b39f96638de2c70436d0b9173318e
BLAKE2b-256 6bf3f5f40042adcf0c507dbe8de92263541601995399bbbffb6a438efb2bded8

See more details on using hashes here.

Provenance

The following attestation bundles were made for timer_for_python-0.9.10-py3-none-any.whl:

Publisher: release.yml on jakob-bagterp/timer-for-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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