hbutils.system

System utilities package for hbutils.

This package provides a unified interface to a collection of system-level utilities, organizing common functionality across filesystem, git, network, OS, and Python environment operations. It re-exports public objects from the submodules so they can be accessed directly under hbutils.system.

The package aggregates the following submodules:

Example:

>>> from hbutils.system import *
>>> # Use utilities exposed by the submodules
>>> # e.g., urlsplit from the network submodule (if exported there)
>>> # split_url = urlsplit('https://example.com/path?q=1')

Note

This package is a convenience re-exporter. Public objects are defined in the underlying submodules and imported into this namespace.