Metadata-Version: 2.1
Name: human-readable-ids
Version: 0.1.3
Summary: Generates a human readable ID using a format of: Adjective Noun ID
Home-page: https://github.com/JonnyFb421/human-readable-ids
Author: Jonny Carlyon
Author-email: jonathoncarlyon@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Project-URL: Repository, https://github.com/JonnyFb421/human-readable-ids
Description-Content-Type: text/markdown

# Human Readable ID
> Python library to generate a random human readable ID in the format of `<adjective> <noun> <number 1-100>`.


## Common Usage
This can be used any time you need a unique value that should be legible by humans (unlike a UUID).  
Currently this library only contains a single method: `get_new_id()`

```python
In [1]: import human_readable_ids                                                                                                                                                                                                       

In [2]: human_readable_ids.get_new_id()                                                                                                                                                                                                 
Out[2]: 'Short-term Painting 30'

```

