Metadata-Version: 2.1
Name: madlibspy
Version: 2.2
Summary: A library to create your own madlibs game!
Home-page: https://github.com/Nemika-Haj/MadLibsPy
Author: Nemika
Author-email: nemika@bytestobits.dev
License: MIT
Description: # **MadlibsPy**
        Create your own madlibs game!
        
        ## **Installation**
        Use `python -m pip install madlibspy`
        
        ## **Example**
        ```py
        import madlibspy as madlibs
        
        data = madlibs.Madlibs()
        
        answers = [input(f"Enter a/an {i}: ") for i in data.variables]
        
        text = data.convert(answers)
        
        """text = answers >> data
        This also works, it's a faster way of convertion.
        """
        print(data.title)
        print(text)
        ```
        *And much more!*
        
        ## **Documentation**
        Coming soon...!
Keywords: madlibspy,madlibs,py,python,game,madlibs.py
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
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.9
Description-Content-Type: text/markdown
