Python library with useful functions for developers and QA needs
Project description
th2-common-utils-py
Python library with useful functions for developers and QA needs.
Installation
pip install th2-common-utils
Usage
1. Message fields access
The library provides a convenient way for Message fields access.
Instead of this:
msg.fields['BO5Items'].list_value.values[0].message_value.fields['segment_instance_number'].message_value.fields['segment_number'].simple_value
You can do this:
import th2_common_utils
msg['BO5Items'][0]['segment_instance_number']['segment_number']
2. Converters
message_to_dict(message)
- note, you will lose all metadata of the Message.dict_to_message(fields, session_alias, message_type)
- where:- fields - required argument - message fields as a python dict;
- session_alias and message_type - optional arguments - used to generate message metadata.
dict_to_root_message_filter(message_type, message_filter, metadata_filter, ignore_fields, check_repeating_group_order, time_precision, decimal_precision)
- all arguments are optional.message_to_typed_message(message, message_type)
- where:- message - Message object;
- message_type - TypedMessage class object.
message_to_table(message)
- where:- message - Message object or dict.
To import functions above:
from th2_common_utils import message_to_dict, dict_to_message # ...
3. Working with events
th2-common-utils
provides the class to work with events - EventUtils
.
Methods of EventUtils
class:
create_event_body(component)
- creates event body fromcomponent
as bytes.create_event_id()
- creates EventID.create_event(id, parent_id, start_timestamp, end_timestamp, status, name, type, body, attached_message_ids)
- creates event; all arguments are optional.
To use functions above:
from th2_common_utils import EventUtils as eu
my_event = eu.create_event(id=eu.create_event_id,
name='My event',
#... )
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 th2-common-utils-1.1.0.dev2371599532.tar.gz
.
File metadata
- Download URL: th2-common-utils-1.1.0.dev2371599532.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7388bb600f4e320d77ca6fcc267d3a33b6604c5841d71c2fcfc8f24565cea96 |
|
MD5 | 2365a0f8dd3ea3e12c5ffa2949f7c1c6 |
|
BLAKE2b-256 | 2917e856ca4fcdd8887673fcd6746ea52eb267e5b85d84eadef842f01520a68f |
File details
Details for the file th2_common_utils-1.1.0.dev2371599532-py3-none-any.whl
.
File metadata
- Download URL: th2_common_utils-1.1.0.dev2371599532-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8267073eb5e82dcca6eddb26165f34c5c2531f4afc9a9d3f14754053b0edaa43 |
|
MD5 | f2ce12d409bfe9431213b86d2a1649cc |
|
BLAKE2b-256 | fc8e5629d3dd47bb91d1a8ec131d6fd92deadb49f9eeeb042f7da28f75b57fa4 |