Metadata-Version: 2.1
Name: mc.py
Version: 3.0.2
Summary: String generator based on Markov process
Home-page: https://github.com/jieggii/mc.py
Author: jieggii
Author-email: jieggii@protonmail.com
License: MIT
Project-URL: Documentation, https://github.com/jieggii/mc.py/blob/master/docs/README.md
Project-URL: Source, https://github.com/jieggii/mc.py
Project-URL: Tracker, https://github.com/jieggii/mc.py/issues
Description: # mc.py [![Project on PyPi](https://img.shields.io/pypi/v/mc.py.svg)](https://pypi.org/project/mc.py/) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/cc6260ef77a6489db85f660e9b0d3e27)](https://www.codacy.com?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=jieggii/mc&amp;utm_campaign=Badge_Grade) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
        String generator based on Markov process
        
        ## Installation
        `pip3 install mc.py`
        
        ## Simple example
        ```python
        import mc
        
        generator = mc.StringGenerator(
            samples=["hello world", "world of cuties"]
        )
        result = generator.generate_phrase()
        print(result)
        # e.g. >>> "hello world of cuties"
        ```
        More examples can be found [here](https://github.com/jieggii/mc.py/tree/master/examples)    
        ## Features
        * Easy to use
        * Phrase validators (also built-in). [Read more]()
        * Phrase formatters (also built-in). [Read more]()
Platform: UNKNOWN
Requires-Python: >=3
Description-Content-Type: text/markdown
