aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: cab856eb827bf02c9a916fcfe6754ec883c1a935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# alphanum

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

## Usage

```python
import alphanum

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

## License

Copyright (c) 2020 Cody Logan. MIT licensed.