This package contains a bunch of Python utils developed for Support, Test and Automation IT Engineers
Project description
ParUtils
This package is a light version of ParTools, requiring no third-party dependencies. It includes a reworked logging feature, as well as string, and file handling features. You can mainly use them for:
- Logging information in a file
- Loading / saving text files
- Listing files
- Loading / saving csv files (lighter but more performant than built in csv module)
- Creating hash strings, random string, comparing strings with wildcard char
- Comparing files and lists
- Listing and removing duplicates from a list
QuickStart
pip install parutils
You can start by testing the logger with the following code:
import parutils as u
u.Logger() # initializes a log file
u.log('Hello World') # logs something in the console and in the log file
You should then see something like this in the console:
Log file initialised (c:\Dev\ParUtils\log\20221213_072132.txt)
CWD: c:\Dev\ParUtils
Python interpreter path: C:\Python\python.exe
Python version: 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)]
ParUtils version: 1.0.8
07:21:32 - Hello World
Example of useful functions
ParUtils provides generic functions meant to be reused by external packages. In this section, a few of these functions are listed. For an exhaustive list, you can check out parutils/__init__.py.
Manipulating files
save_list
: saves a list into a text fileload_txt
: loads a text file into a string or a listload_csv
: loads a csv file into a list of listssave_csv
: saves a list of lists into a csv filelist_files
: lists files in a given directory (possibility to recurse subdirectories)
Manipulating strings
like
: behaves as the LIKE of Oracle SQL (you can match strings with wildcard character '*'). It returns a re.match object giving you access to the matched wildcards strings.
Example:m = like('Hello World', 'He\*o w\*d')
,m.group(1)
=> 'll'like_list
/like_dict
: apply thelike
function directly to lists or dictionaries (see doc).big_number
: converts a potentially big number into a readable string.
Example:big_number(10000000)
=> '10 000 000'.get_duration_string
: outputs a string representing the time elapsed since the inputstart_time
.
Example:get_duration_string(0, end_time=200)
=> '3 minutes and 20 seconds'.hash512
: creates a non randomised hash string from a string.gen_random_string
: generates a random string.
Data quality features:
diff_list
: compares two listsfile_match
: compare two filesfind_dup_list
: finds duplicates in a listdel_dup_list
: removes duplicates from a list
Logging with parutils
The log
function and the Logger
class are directly available from the parutils package. So you can do:
import parutils as u
u.Logger()
u.log('Hello World')
Note: if you want the log
function to actually write in a log file, you have to create a Logger
object before using it, otherwise it will just print out the log info in the console.
The relevant parameters such a the log directory or the log format can be specified when initializing the Logger
object. The default log_format
is '%H:%M:%S -'
, and a default log line looks like:
19:45:04 - This line has been generated by the parutils.log function
Note that the default constants for the logging sub package are stored in parutils.logging.const. So for example, if you want to overwrite the default value for the logging directory, you can do:
import parutils as u
u.logging.const.DEFAULT_DIR = '<my_custom_dir>'
The step_log
function allows you to log some information only when the input counter
is a multiple of the input step
. Thus, step_log
is to be used in loops to track the progress of long processes such as reading or writing millions of lines in a file. The what
input expects a description of what is being counted. It's default value is 'lines written'
.
In order to correctly measure the elapsed time for the first log line, the step_log
function has to be initialised by running init_sl_timer()
.
So for example, if you input step=500
and don't input any what
value, you should get something like this:
19:45:04 - 500 lines written in 3 ms. 500 lines written in total.
19:45:04 - 500 lines written in 2 ms. 1 000 lines written in total.
19:45:04 - 500 lines written in 2 ms. 1 500 lines written in total.
Checkout the test_logging.py file in tests/logging for simple examples of use.
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 Distributions
Built Distribution
File details
Details for the file ParUtils-1.1.3-py3-none-any.whl
.
File metadata
- Download URL: ParUtils-1.1.3-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfbe267ffc97f8a8efa4a52e3c1e98b8d34ebfbe179c5924a40c02b7cd2451ee |
|
MD5 | ee898acf19179102aacd54b5d32c0d4b |
|
BLAKE2b-256 | d81ecd0d8bd32facfe20081c1db17a324c19e076992001ae1454bf44d92eb9d4 |