Metadata-Version: 2.1
Name: recursion-detect
Version: 2019.4.13
Summary: detect recursion
Home-page: https://github.com/looking-for-a-job/recursion-detect.py
License: UNKNOWN
Description: <!--
        https://pypi.org/project/readme-generator/
        https://pypi.org/project/python-readme-generator/
        -->
        
        [![](https://img.shields.io/pypi/pyversions/recursion-detect.svg?longCache=True)](https://pypi.org/project/recursion-detect/)
        
        #### Installation
        ```bash
        $ [sudo] pip install recursion-detect
        ```
        
        #### Functions
        function|`__doc__`
        -|-
        `recursion_detect.depth()` |return recursion depth. 0 if no recursion
        
        #### Examples
        ```python
        >>> import recursion_detect
        >>> def recur():
            depth = recursion_detect.depth()
            print("depth = %s" % depth)
            if depth==5:
                return
            recur()
        
        >>> recur()
        0
        1
        2
        3
        4
        ```
        
        <p align="center">
            <a href="https://pypi.org/project/python-readme-generator/">python-readme-generator</a>
        </p>
Platform: UNKNOWN
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
Description-Content-Type: text/markdown
