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.11.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.11-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for timer_for_python-0.9.11.tar.gz
Algorithm Hash digest
SHA256 cc3e631f357228db2b3111104ec5f32b41d0618eda1ee7a75d7fd569ed95d8ef
MD5 16ade0a83b9f6284017f6121189251b6
BLAKE2b-256 db9bea350448ead42ac3bae9020529eb80af303f4c8a08ff4e274cfdd79c75b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for timer_for_python-0.9.11.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.11-py3-none-any.whl.

File metadata

File hashes

Hashes for timer_for_python-0.9.11-py3-none-any.whl
Algorithm Hash digest
SHA256 06582407efe06df3181775b5a1301435a53dbcdc252a1480e3dc95f1bb3976e5
MD5 26fdf88c448d22503658195bd348c739
BLAKE2b-256 06feb6747adbc897ad047598117805a4176fe7c3b90e7e36c4c17f143e1712ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for timer_for_python-0.9.11-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