Ubiquerg is a Python utility package providing a collection of universally helpful, low-level functions. These functions are designed to be generic and have no external dependencies beyond standard built-in Python modules, making them suitable for use across many different applications. The library is currently at version 0.9.3, released in April 2026, with a regular release cadence.
pip install ubiquergVerified import paths — ran on the pinned version, not inferred.
Demonstrates how to use `expandpath` to resolve user and environment variables in a path and `is_filepath_like` to check if a string represents a file path.
Monitor release notes for potential API changes, especially when updating minor versions. Test your application thoroughly after updates.
Review `mkabs` usage if migrating from versions prior to 0.8.0, especially with unusual path inputs, and test expected outputs to ensure compatibility with the expanded behavior.
Verify calls to `is_url` if your application handles `Path` objects explicitly or relies on strict input type checking. Ensure no unintended behavior arises from `Path` object acceptance.
Carefully test the `deep_update` function with various nested dictionary scenarios if its precise behavior is critical to your application, particularly if you are accustomed to its implementation in other libraries.
pip install ubiquerg
ubiquerg.is_int(value)
ubiquerg.count_unique([1, 2, 2, 3])
from ubiquerg import is_int
No dependency data recorded yet.