Metadata-Version: 2.1
Name: validate-brackets
Version: 0.0.2
Summary: validate brackets in a string
Home-page: 
Author: Amit Chojar
Author-email: pythonchojar@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: licence.txt

#Validate brackets
This package allows to validate correct opening and closing of brackets in a string.

## Installation
Run the following to install:
```
$pip install validate_brackets
```


# Usage
```
from ValidateBrackets import validate_brackets

# Validate a string with brackets, returns True
validate_brackets('[]{()}')

# Validate a string with brackets, returns False
validate_brackets('[]{(}'
```
# Developing validate_brackets
To install validate_brackets, along with the tool you need to develp and run tests, run the following in your virtualenv

```
$pip install -e .[dev]
```


