Metadata-Version: 2.1
Name: mong
Version: 0.0.2
Summary: Moby Name Generator in Python
Home-page: https://github.com/toshihikoyanase/mong
Author: Toshihiko Yanase
Author-email: toshihiko.yanase@gmail.com
License: MIT
Description: # mong
        
        [![Python](https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue)](https://www.python.org)
        [![pypi](https://img.shields.io/pypi/v/mong.svg)](https://pypi.python.org/pypi/mong)
        ![](https://github.com/toshihikoyanase/mong/workflows/test/badge.svg)
        [![codecov](https://codecov.io/gh/toshihikoyanase/mong/branch/master/graph/badge.svg)](https://codecov.io/gh/toshihikoyanase/mong)
        
        A Python port of [moby](https://github.com/moby/moby) name generator.
        The original code in [moby](https://github.com/moby/moby) can be found [here](https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go).
        
        ## Installation
        
        ```
        # PyPI
        $ pip install mong
        
        # Development version
        $ pip install git+https://github.com/toshihikoyanase/mong.git
        ```
        
        ## Usage
        
        [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/16iw3njq06R32-0dHiRn2efUvvZmYHeRL)
        
        ```python
        >>> import mong
        >>> mong.get_random_name()
        'goofy_robinson'
        >>> mong.get_random_name()
        'stoic_feynman'
        ```
        
        ## References
        
        - [Moby Project](https://mobyproject.org/)
        - [moby/moby@GitHub](https://github.com/moby/moby)
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
