Metadata-Version: 2.1
Name: brackets-closed
Version: 0.8
Summary: Checks if brackets are closed given a string
Home-page: http://pypi.python.org/pypi/brackets_closed/0.8
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:
        
        ```
        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:
        
        ```
        True
        False
        True
        False
        True
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
