A small python timing package for a packaging demonstration
Project description
smalltime
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 details)
Built Distribution
File details
Details for the file smalltime-0.0.7.tar.gz
.
File metadata
- Download URL: smalltime-0.0.7.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.2 Linux/5.8.0-1042-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 248f39d524f9cb8b13308b4683dcc181e33ec205936fc9f9669fb6a26178b360 |
|
MD5 | d15a553bfef91414b1fe645cb5d5097a |
|
BLAKE2b-256 | dd5f41952088a1d9a02eb696be71a256e947cd864207dd2f6a7d944552135d29 |
File details
Details for the file smalltime-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: smalltime-0.0.7-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.2 Linux/5.8.0-1042-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87642c0f69b8fc44ec38808172da5006965b3a351dc4abe501f62feddc50ecf8 |
|
MD5 | 1588d247bada081caff23821a36e6315 |
|
BLAKE2b-256 | 56114510c8ad0b520444b8e100b4419c764794770eca21f1a1c6c4c25835a6f2 |