Metadata-Version: 2.1
Name: alphanum
Version: 0.2.0
Summary: Generates random alphanumeric strings.
Home-page: https://github.com/clpo13/alphanum
License: MIT
Keywords: string,random,pseudo-random,generator
Author: Cody Logan
Author-email: clpo13@gmail.com
Requires-Python: >=3.5,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Project-URL: Repository, https://github.com/clpo13/alphanum
Description-Content-Type: text/markdown

# alphanum

Simple Python library to generate pseudo-random alphanumeric strings of
arbitrary length. Requires Python 3.5+.

## Installation

alphanum can be obtained from PyPI with `pip install alphanum`.

Alternatively, build it with [Poetry](https://python-poetry.org/):

```bash
pip install poetry
git clone https://github.com/clpo13/alphanum
cd alphanum
poetry build
pip install dist/alphanum-x.y.z-py3-none-any.whl
```

## Usage

```python
import alphanum

foo = alphanum.generate(10)
print(foo)
```

## License

Copyright (c) 2020 Cody Logan. MIT licensed.

