Skip to main content

Awesome clock_timer created by maycuatroi

Project description

Clock Timmer

CI

Clock Timmer is a Python library that provides a tool for logging the time and number of calls of a function in Python. It can be used as a decorator or context manager, allowing you to log the time and number of calls of a function or block of code without modifying any lines of code within the function or block.

Installation To install Clock Timmer, use the following command:

pip install python-clock-timer

Usage

As a decorator

To use Clock Timmer as a decorator, you can use it like this:

from clock_timer import ClockLogger

logger = ClockLogger()

@logger
def my_function():
    # code of the function

After using the decorator, you can access the time and number of calls logs of the function by accessing the log attribute of the Clock Timmer object. For example, to get the number of calls and total time elapsed of the my_function, you can do the following:

print(logger.log['my_function'])

As a context manager

To use Clock Timmer as a context manager, you can use it like this:

from clock_timer import ClockLogger

with ClockLogger() as logger:
    # code of the block

print(logger.elapsed)

After using the context manager, you can access the total time elapsed by accessing the elapsed attribute of the Clock Timmer object.

Example

Here is an example of using Clock Timmer as a decorator and a context manager:

from clock_timer import ClockLogger
import time

# Using Clock Timmer as a decorator
logger = ClockLogger()

@logger
def my_function():
    time.sleep(1)

my_function()
my_function()

print(logger.log['my_function'])

the output

my_function was called 1 times, total time elapsed: 1.005031s
my_function was called 2 times, total time elapsed: 2.005123s
[2, 2.0051226250000003]

Using Clock Timmer as a context manager

import time

from clock_timer import ClockLogger

with ClockLogger() as logger:
    time.sleep(1)

print(logger.elapsed)

The output of this example will be:

Total time elapsed: 1.003622s
1.003622042

Contributing

We welcome contributions to Clock Timmer. If you have any ideas for improvements or want to report a bug, please open an issue or submit a pull request.

License

Clock Timmer is licensed under the MIT License. See the LICENSE file for more details.

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

python-clock-timer-0.2.1.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

python_clock_timer-0.2.1-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file python-clock-timer-0.2.1.tar.gz.

File metadata

  • Download URL: python-clock-timer-0.2.1.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.1

File hashes

Hashes for python-clock-timer-0.2.1.tar.gz
Algorithm Hash digest
SHA256 64c2bb17bb974ec9193c9f1c20e6cc292939ac2a27aa19074c8520b948d54968
MD5 0c5c8c130329cb0c06b73d478c9e8bb2
BLAKE2b-256 deef9ad4fcba0888a5a9da763f6045be0f80bee6d3ce03771be67edc36c232f1

See more details on using hashes here.

File details

Details for the file python_clock_timer-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for python_clock_timer-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a3215798decb5688053a30aba502b09083fb3af2c76e430e8c9d7e2509fbc011
MD5 d3314b5f6f5ebe6488dc9d734e50c937
BLAKE2b-256 0808a48f79561399be77611cfe5fde2d6d3bdb48145f0d7a23749e80abb6a664

See more details on using hashes here.

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