Skip to main content

A small python timing package for a packaging demonstration

Project description

smalltime


GitHub PyPI - Python Version PyPI PyPI - Downloads Test codecov Read the Docs Code style: black

What is it?

smalltime is a quick and dirty library for timing Python function, sections of code and arbitrary programs on the command line.


Requirements

smalltime requires Python >= 3.6.2.

See pyproject.toml for dependencies and dev dependencies.


Installation

Via poetry:

poetry add smalltime

Via pip:

pip install smalltime

Basic Usage

In Python Code

In-Line

import smalltime

timer = smalltime.Timer(name="hello world timer")
timer.start()
print("Hello, ", end="")
print("World!")
timer.stop()

Via Decorator

import smalltime
import subprocess

@smalltime.timed(name="thing_timer")
def thing_you_want_to_time():
    subprocess.call(["python", "-c", "\"import this\""])


thing_you_want_to_time()

From the Command Line

N.B.: Assumes installation via Poetry and an active Poetry shell.

# Usage: st <program> [args]
st sleep 10
Starting counter (BNM8rBqP)
Counter stopped (BNM8rBqP): 10007777130ns elapsed

Can I use this in my project?

Yes, please do! The code is all open source and BSD-3-Clause licensed.


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

smalltime-0.0.7.tar.gz (4.5 kB view hashes)

Uploaded Source

Built Distribution

smalltime-0.0.7-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

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