Metadata-Version: 2.4
Name: pyubix
Version: 1.0.0
Summary: Powerful lightweight Python utility library
Project-URL: Homepage, https://xnovear.dpdns.org
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# ULIB

Lightweight Python utility library.

Version: 3.0.0

## Features

- Math
- Text
- JSON
- System
- Time
- Cache
- Retry
- Timer
- File utilities
- Subprocess
- Hash
- UUID
- Random
- Collections
- Network
- Logging

## Install

python -m pip install -e .

## Example

import ulib

print(ulib.add(10, 20))
print(ulib.sha256("hello"))
print(ulib.uuid())

result = ulib.run("ls -la")
print(result.stdout)
