aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCody Logan <clpo13@gmail.com>2020-08-05 17:21:45 -0700
committerCody Logan <clpo13@gmail.com>2020-08-05 17:22:41 -0700
commit52e72221bf65d118bc323866243f3fdbd2589c58 (patch)
tree52eda1955e56b2323b6988819cbf4dbc9a3e9136 /README.md
parente06712a3618f095dc47df9a39da63f4e916ec35a (diff)
downloadalphanum-52e72221bf65d118bc323866243f3fdbd2589c58.tar.gz
alphanum-52e72221bf65d118bc323866243f3fdbd2589c58.zip
Initialize gh-pages
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index 26e0a11..0000000
--- a/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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.