Hat utility library
Project description
This library is part of Hat Open project - open-source framework of tools and libraries for developing applications used for remote monitoring, control and management of intelligent electronic devices such as IoT devices, PLCs, industrial automation or home automation systems.
Development of Hat Open and associated repositories is sponsored by Končar - Power Plant and Electric Traction Engineering Inc. (Končar KET - https://www.koncar-ket.hr).
For more information see:
hat-util documentation - https://core.hat-open.com/docs/libraries/util.html
Hat Core homepage - https://core.hat-open.com
Hat Core git repository - https://github.com/hat-open/hat-core.git
About
Common utility functions not available as part of standard library.
hat.util.first:
def first(xs: typing.Iterable[T], fn: typing.Callable[[T], bool] = lambda _: True, default: typing.Optional[T] = None ) -> typing.Optional[T]: """Return the first element from iterable that satisfies predicate `fn`, or `default` if no such element exists. Args: xs: collection fn: predicate default: default value Example:: assert first(range(3)) == 0 assert first(range(3), lambda x: x > 1) == 2 assert first(range(3), lambda x: x > 2) is None assert first(range(3), lambda x: x > 2, 123) == 123 """
hat.util.CallbackRegistry:
class RegisterCallbackHandle(typing.NamedTuple): """Handle for canceling callback registration.""" cancel: typing.Callable[[], None] """cancel callback registration""" def __enter__(self): ... def __exit__(self, *args): ... ExceptionCb: typing.Type = typing.Callable[[Exception], None] """Exception callback""" class CallbackRegistry: """Registry that enables callback registration and notification. Callbacks in the registry are notified sequentially with :meth:`CallbackRegistry.notify`. If a callback raises an exception, the exception is caught and `exception_cb` handler is called. Notification of subsequent callbacks is not interrupted. If handler is `None`, the exception is reraised and no subsequent callback is notified. Example:: x = [] y = [] registry = CallbackRegistry() registry.register(x.append) registry.notify(1) with registry.register(y.append): registry.notify(2) registry.notify(3) assert x == [1, 2, 3] assert y == [2] """ def __init__(self, exception_cb: typing.Optional[ExceptionCb] = None): ... def register(self, cb: typing.Callable ) -> RegisterCallbackHandle: """Register a callback.""" def notify(self, *args, **kwargs): """Notify all registered callbacks."""
hat.util.parse_url_query:
def parse_url_query(query: str) -> typing.Dict[str, str]: """Parse url query string. Returns a dictionary of field names and their values. Args: query: url query string Example:: url = urllib.parse.urlparse('https://pypi.org/search/?q=hat-util') args = parse_url_query(url.query) assert args == {'q': 'hat-util'} """
hat.util.get_unused_tcp_port and hat.util.get_unused_udp_port:
def get_unused_tcp_port() -> int: """Search for unused TCP port""" def get_unused_udp_port() -> int: """Search for unused UDP port"""
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 hat_util-0.4.0.dev202101050107-cp39-none-any.whl
.
File metadata
- Download URL: hat_util-0.4.0.dev202101050107-cp39-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: CPython 3.9
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c18bc3b0c0443656b4a3f29cba70a6c07736998663e9b61ee4a39980154a7f1f |
|
MD5 | fb8f1131c6f960f6951f59d853bb8dd3 |
|
BLAKE2b-256 | 669977781d255797fc132cba601e72e1245db277a24ccf997946288960fe167d |