Skip to main content

The simplest ever library for measuring time of python code execution.

Project description

Build Status Coverage Status PyPI version

The simplest ever library for measuring time of python code execution.

Installation

pip install timepy

How to use

from timepy import Timer

It’s simple:

t = Timer()

t.start()
# Your code which you want to measure
t.stop()
print(t.total_time)

You can give a name fro your timer:

t = Timer('My second timer')

Keep every moment you want

You can

t = Timer()
t.start()
# Some heavy work 1
t.commit('Work 1 is done')
# Some heave work 2
t.commit('Work 2 is done')
t.stop()

print(t.events)

# will output:
# [<TimerStarted: 0.0 s>,
#  <TimerCommitted: 10.0 s (Work 1 is done)>,
#  <TimerCommitted: 20.0 s (Work 2 is done)>,
#  <TimerStopped: 20.001 s>]

Measure your iterations

t = Timer()
t.start
for i in some_list:
    # do heavy work
    t.lap()
t.stop()

print(t.laps[0])      # <Lap 0: 123 s>
print(t.laps)         # see all laps
print(t.average_lap)  # average lap duration

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

timepy-0.1a.tar.gz (3.4 kB view details)

Uploaded Source

File details

Details for the file timepy-0.1a.tar.gz.

File metadata

  • Download URL: timepy-0.1a.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for timepy-0.1a.tar.gz
Algorithm Hash digest
SHA256 e76cf6431ec7c0cf7e6a282acdbfb5f4bb0669c7669a39355d38086536aad07d
MD5 f5fa10869db4377d26ffb335b5624530
BLAKE2b-256 2b0ba99f37640ff7493beeb54dd8a3f85043a87aa5c4077e9fa39459b88212db

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