py-random-words

Generate random names


License
MIT
Install
pip install py-random-words==0.3

Documentation

Py Random Words

Installation

To install, simply:

$ pip install py_random_words

Usage

from py_random_words import RandomWords

rnd_word = RandomWords()

print(rnd_word.get_word()) # alpaca
print(rnd_word.get_word()) # cat
print(rnd_word.get_word()) # dog

Release steps

# Make sure you have the latest versions of setuptools and wheel installed
$ python3 -m pip install --user --upgrade setuptools wheel

# Now run this command from the same directory where setup.py is located
$ python3 setup.py sdist

# Uploading the distribution archives
$ python3 -m pip install --user --upgrade twine
$ twine upload dist/*

Ref: https://packaging.python.org/tutorials/packaging-projects/#packaging-your-project