Metadata-Version: 2.4
Name: ruuid4
Version: 0.1.5
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Summary: A tiny, fast UUID4 generator powered by Rust.
License-Expression: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# ruuid4

## Installation
```bash
pip install ruuid4
```

🔗 **GitHub Repository:**
https://github.com/jashan7305/ruuid4

`ruuid4` is a tiny, extremely fast UUID4 generator implemented in rust and exposed to python using PyO3.

## Features
- Generates RFC-4122 compliant UUIDv4 values
- Powered by Rust’s `uuid` crate
- Zero dependencies for Python users

## Functions
- `uuid4()` : Returns a uuid v4 string

## Example

```python
import ruuid4

print(ruuid4.uuid4())
```
