Metadata-Version: 2.1
Name: uuid32
Version: 0.1.0
Summary: A library to generate 32-character random strings using digits and lowercase letters.
Home-page: https://github.com/balyakin/uuid32
Author: Evgeny Balyakin
Author-email: jkwork@yandex.ru
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# uuid32

A simple library to generate 32-character random strings using digits and lowercase letters.

## Installation

```bash
pip install uuid32
```

Usage:

```
from uuid32 import uuid32

random_string = uuid32()
print(random_string)  # Example output: 'abc123xyz456mno789pqr123stu456vw'
```
