Metadata-Version: 2.4
Name: get-a-coolname
Version: 1.0.0
Summary: Get a predictable coolname from any Python object
Project-URL: Homepage, https://github.com/francoisWeber/coolname
Project-URL: Repository, https://github.com/francoisWeber/coolname
Author: François Weber
License-Expression: MIT
Keywords: coolname,hash,name-generator,random
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# get-a-coolname

Get a predictable coolname from any Python object.

## Installation

```bash
pip install get-a-coolname
```

## Usage

```python
from get_a_coolname import get_a_coolname

# Deterministic: same seed always gives the same name
get_a_coolname((42, "pythons", float))
# => 'solemn_pants_resize_lightly'

# Random: no seed, different name each time
get_a_coolname()
# => 'jovial_tigers_hug_silently'

# camelCase output
get_a_coolname(seed="hello", camel=True)
# => 'pinkWhalesSkateBeautifully'

# Pick which components to include
get_a_coolname(seed="x", noun=False, adverb=False)
# => 'stunning_spell'
```
