clpo13 / alphanum

Python library to generate pseudo-random strings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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:

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

import alphanum

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

License

Copyright (c) 2020 Cody Logan. MIT licensed.

About

Python library to generate pseudo-random strings

License:MIT License


Languages

Language:Python 100.0%