Simple utilities to make it easier to track performance of Python programs under normal operations
Context Managers
DisplayElapsed
This context manager makes it easy to display console-oriented start/end messages with end-user tolerable formatting.
Usage:
with DisplayElapsed("{now} uploading {filename} (original: {original})\n",
"{now} uploaded {filename} in {elapsed:.1f} seconds",
filename=remote_path, original=local_path):
upload_filename(…)
Notes:
DisplayElapsed takes one positional argument: message. The message is formatted using str.format with the values {now} and {elapsed} provided automatically. All other keyword arguments provided to DisplayElapsed will be available during formatting.
If message contains {{now}} it will be replaced with the current timestamp
If message does not contain {{now}} it will be prepended unless include_timestamp=False
If postamble is not specified, it will default to " ({elapsed:.1f} seconds)"
If output is not specified, it will default to sys.stdout
If output_on_error is not True, the normal postamble display will be suppressed when an exception occurs
By default, a newline will not be emitted after the opening message so the message and postamble will be displayed on a single line. output will be flushed, if supported, to provide immediate feedback. Provide a message which ends in \n if you want multi-line output.
Release files for performance_tools 0.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| performance_tools-0.3.tar.gz | 6.7 kB | Details |
Release files / performance_tools-0.3.tar.gz
| Download URL | performance_tools-0.3.tar.gz |
|---|---|
| Size | 6.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c5677ce6fa559f3edc25410e33679a872cf14fcebd95ea1fb431ac7d67dd8a53
|
|
BLAKE2b-256 checksum How to use checksums |
2104c37b6a1ffe055c90e131a54328c2402eb7a40771755d68cd68c23ab44134
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |