aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..cab856e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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.