Metadata-Version: 2.1
Name: listify
Version: 2019.3.22
Summary: @listify decorator - return a list instead of a generator
Home-page: https://github.com/looking-for-a-job/listify.py
License: UNKNOWN
Description: <!--
        https://pypi.org/project/readme-generator/
        -->
        
        [![](https://img.shields.io/pypi/pyversions/listify.svg?longCache=True)](https://pypi.org/project/listify/)
        
        #### Installation
        ```bash
        $ [sudo] pip install listify
        ```
        
        #### Functions
        function|`__doc__`
        -|-
        `listify.listify(func)` |`@listify` decorator
        
        #### Examples
        `yield` + `list()`
        ```python
        >>> def func():
                yield "value"
        
        >>> list(func())
        ```
        `list.append()`
        ```python
        >>> def func():
                result = []
                result.append("value")
                return result
        ```
        
        `@listify`
        ```python
        >>> @listify
            def func():
                yield "value"
        ```
        
        <p align="center">
            <a href="https://pypi.org/project/readme-generator/">readme-generator</a>
        </p>
Keywords: listify list
Platform: UNKNOWN
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
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: Topic :: Software Development
Description-Content-Type: text/markdown
