Metadata-Version: 2.1
Name: sbuuid
Version: 0.2
Summary: A package to generate globally unique IDs
Home-page: https://github.com/shouvikbj/
Author: Shouvik Bajpayee
Author-email: shouvikbajpayee.private@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# SBUUID Package

This package provides a way to generate globally unique ID strings.

## Installation

You can install the package via pip:

```python
pip install sbuuid
```


## Usage

```python
from myuuid import generate_uuid

print(generate_uuid())  # Outputs a unique ID string
```
