Metadata-Version: 1.2
Name: py-loremipsum
Version: 1.0.3
Summary: Python module for generating placeholder text using the https://loripsum.net/ API
Home-page: https://github.com/connordelacruz/py-loremipsum/
Author: Connor de la Cruz
Author-email: connor.c.delacruz@gmail.com
License: MIT
Download-URL: https://github.com/connordelacruz/py-loremipsum/archive/1.0.3.tar.gz
Project-URL: Documentation, http://connordelacruz.com/py-loremipsum/
Project-URL: Source, https://github.com/connordelacruz/py-loremipsum/
Description-Content-Type: UNKNOWN
Description: Lorem Ipsum Generator
        =====================
        
        |pypi|
        |license|
        |github|
        
        .. |pypi| image:: https://img.shields.io/pypi/v/py-loremipsum.svg
            :alt: PyPI
            :target: https://pypi.python.org/pypi/py-loremipsum
        
        .. |license| image:: https://img.shields.io/pypi/l/py-loremipsum.svg
            :alt: PyPI - License
        
        .. |github| image:: https://img.shields.io/badge/GitHub--green.svg?style=social&logo=github
            :alt: GitHub
            :target: https://github.com/connordelacruz/py-loremipsum
        
        
        Python module for generating placeholder text using the `loripsum.net API <https://loripsum.net/>`__.
        
        Basic Usage
        ===========
        
        .. code:: python
        
            import loremipsum
        
            # Generate 3 medium length paragraphs in plain text
            plaintext = loremipsum.generate(3, loremipsum.ParagraphLength.MEDIUM)
        
            # Generate 1 long paragraph with HTML tags
            simple_html = loremipsum.generate(1, loremipsum.ParagraphLength.LONG, plaintext=False)
        
            # Generate 1 long paragraph with HTML headers and decorated text
            options = ['headers', 'decorate']
            decorated_html = loremipsum.generate(1, loremipsum.ParagraphLength.LONG, plaintext=False, html_options=options)
        
        
        .. readme-only
        
        For more details, see the `documentation <http://connordelacruz.com/py-loremipsum/>`__.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Utilities
Classifier: Development Status :: 5 - Production/Stable
