Miscellaneous utilities
Project description
Intro
This is a collection of generally useful functions for use with any application.
The diag_msg function allows you to print a message with the time and caller sequence added for you.
The doc_checker module provides an easy way to do a doctest.
The etrace decorator provide entry and exit tracing including passed args and returned values.
The FileCatalog item allows you to map file names to their paths.
The print_flower_box_msg function allows you to print text in a flower box (i.e., surrounded by asterisks).
The log_verifier allows you to verify that expected log messages have been issued.
The msgs item is a simple facility you can use in test cases to send messages between threads.
The Pauser class provides a pause function similar to the python sleep function, but with improved accuracy.
The stop_watch item is a simple timing function that you can use in test cases.
The @time_box decorator allows you to print start, stop, and execution times.
The timer item provides a way to keep track of time to determine when a function has timed out.
The UniqueTS class provides a way to obtain a unique timestamp.
Examples:
With diag_msg you can print messages with the time and caller info added automatically.
- Example:
print a diagnostic message (<input> appears as the module name when run from the console)
>>> from scottbrian_utils.diag_msg import diag_msg >>> diag_msg('this is a diagnostic message') 16:20:05.909260 <input>:1 this is a diagnostic message
With FileCatalog, you can code your application with file names and retrieve their paths at run time from a catalog. This allows you to use different catalogs for the same set of files, such as one catalog for production and another for testing. Here’s as example:
>>> from scottbrian_utils.file_catalog import FileCatalog >>> from pathlib import Path >>> prod_cat = FileCatalog({'file1': Path('/prod_files/file1.csv')}) >>> print(prod_cat.get_path('file1')) /prod_files/file1.csv
>>> test_cat = FileCatalog({'file1': Path('/test_files/test_file1.csv')}) >>> print(test_cat.get_path('file1')) /test_files/test_file1.csv
With @time_box, you can decorate a function to be sandwiched between start time and end time messages like this:
>>> from scottbrian_utils.time_hdr import time_box
>>> @time_box ... def func2() -> None: ... print('2 * 3 =', 2*3)
>>> func2() <BLANKLINE> ********************************************** * Starting func2 on Mon Jun 29 2020 18:22:50 * ********************************************** 2 * 3 = 6 <BLANKLINE> ******************************************** * Ending func2 on Mon Jun 29 2020 18:22:51 * * Elapsed time: 0:00:00.001204 * ********************************************
With Pauser, you can pause execution for a specified number of seconds like this:
from scottbrian_utils.pauser import Pauser
pauser = Pauser()
pauser.pause(1.5) # pause for 1.5 seconds
Installation
pip install scottbrian-utils
Development setup
See tox.ini
Release History
- 1.0.0
Initial release
- 1.0.1
Added doc link to setup.py
Added version number to __init__.py
Added code in setup.py to get version number from __init__.py
Added licence to setup.py classifiers
- 1.1.0
Added FileCatalog
- 1.2.0
Added diag_msg
- 2.0.0
changed get_formatted_call_sequence and diag_msg (both in diag_msg.py) to get class name in additional cases
dropped support for python 3.6, 3.7, and 3.8
- 2.1.0
added pauser
support for python 3.10
- 2.2.0
added repr for LogVer
- 2.3.0
added is_specified method in Timer
added timeout_value in Timer
support for python 3.11
- 2.4.0
added fullmatch parm to add_msg in log_ver.py
added print_matched parm to print_match_results in log_ver.py
- 3.0.0
added unique_ts
added doc_checker
support python 3.12
drop support python < 3.12
- 4.0.0
added timedelta_match_string to time_hdr.py
added entry_trace.py
- restructured log_verifier:
performance improvements
changes to clarify that regex patterns are used
changed report format
method add_pattern replaces deprecated method add_msg
method verify_match_results replaces deprecated verify_log_results
- 4.0.1
fix etrace to put 2 colons between file name and func
- 4.1.0
add log_ver support to etrace
add stacklevel and enable parms to log_ver test_msg
- 5.0.0
support python 3.13
etrace log_ver instantiate LogVer
etrace log_ver accept LogVer instance
etrace omit_caller
etrace use caller __name__ for log_name
Meta
Scott Tuttle
Distributed under the MIT license. See LICENSE for more information.
Contributing
Fork it (<https://github.com/yourname/yourproject/fork>)
Create your feature branch (git checkout -b feature/fooBar)
Commit your changes (git commit -am ‘Add some fooBar’)
Push to the branch (git push origin feature/fooBar)
Create a new Pull Request
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file scottbrian_utils-5.0.0.tar.gz
.
File metadata
- Download URL: scottbrian_utils-5.0.0.tar.gz
- Upload date:
- Size: 135.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b1037183d62562252747694bb2c6c6432a636d58f8f8b03660318d4852d28739
|
|
MD5 |
66d87a2b376e6031a12438f2669266d0
|
|
BLAKE2b-256 |
f64b673aa9f5c21200d035e0c8a748296e8f0ca541d78fb1dcf77b88e3962613
|
File details
Details for the file scottbrian_utils-5.0.0-py3-none-any.whl
.
File metadata
- Download URL: scottbrian_utils-5.0.0-py3-none-any.whl
- Upload date:
- Size: 46.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
02543707ecf058d2dd1ae458b8cddfdd7fb8849998d6106635b0e4aea72e7154
|
|
MD5 |
34e8bb3d296eea731a6bcd395c50e46e
|
|
BLAKE2b-256 |
5c747f78585b9b81d14895b992fca6532eefe2ffd88006f88d05b4ece55f8e26
|