A Python port of moby name generator. The original code in moby can be found here.
Install mong via pip:
pip install mongYou can generate a random name with just two lines of code:
import mong
print(mong.get_random_name())Example usage:
>>> import mong
>>> mong.get_random_name()
'goofy_robinson'
>>> mong.get_random_name()
'stoic_feynman'This project is licensed under the MIT License (see LICENSE).
Mong includes code from the Moby project (see THIRD_PARTY_LICENSES).