nr-util is a general-purpose Python utility library. It aims to provide common helper functions and tools for various programming tasks. The current version is 0.8.12, released on June 20, 2022. Its release cadence appears irregular, based on PyPI upload history.
pip install nr-utilVerified import paths — ran on the pinned version, not inferred.
This quickstart demonstrates basic usage of the `Digraph` utility for working with directed graphs.
Always pin to a specific patch version (e.g., `nr-util==0.8.12`) and manually review the GitHub repository's change history or module-specific PyPI descriptions (e.g., `nr.utils.re`) before upgrading.
Remember that `pip install nr-util` corresponds to `import nr.util` in your Python code.
Consult the official GitHub repository for the correct module structure and available utilities. Verify the exact import path for the desired functionality. For example, some utilities might be under `nr.util.fs` or `nr.util.digraph`.
Ensure you are importing specific components from `nr.util` or its submodules. For example, instead of `import nr.util; nr.util.some_function()`, use `from nr.util.some_module import some_function; some_function()`.
No dependency data recorded yet.
No resource links recorded.