Metadata-Version: 2.4
Name: pyrubix
Version: 1.1.1
Summary: Powerful lightweight Python utility library
Project-URL: Homepage, https://xnovear.dpdns.org
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pyrubix

Lightweight Python utility library

Version: 1.1.1

## Features

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

## Install

```sh
pip install pyrubix
```

## Example
```python
import pyrubix

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

result = pyrubix.run("ls -la")
print(result.stdout)
```
# 1.1.x
## 1.1.0
- bug patched
  - Error caused by calling math.median (non-existent function) when executing pyrubix.median
## 1.1.1
- add lisence.md
- add termux `pkg` repogitory
  - install: `pkg install pyrubix`
