Metadata-Version: 1.0
Name: brackets-closed
Version: 0.4
Summary: Checks if brackets are closed given a string
Home-page: http://pypi.python.org/pypi/brackets_closed/0.1
Author: Daniel Keighley
Author-email: daniel.keighley@wpengine.com
License: WP
Description: # bracket_closed
        
        ## Checks if all brackets in a string are balanced
        
        ## Example code:
        
        ```python
        from brackets_closed import close_check
        
        close_check.is_closed("([])")
        close_check.is_closed("([)]")
        close_check.is_closed("[](){{{{[]}}}}")
        close_check.is_closed("][][")
        close_check.is_closed("print('This(is) a test to see { if this code { will extract }} brackets [] fro[m a string] that is not {} just brackets!')")
        ```
        
        ## Output from example:
        
        ```sh
        True
        False
        True
        False
        True
        ```
Platform: UNKNOWN
