Metadata-Version: 2.1
Name: mendelai-brat-parser
Version: 0.0.2
Summary: BRAT Parser
Home-page: https://github.com/mendelhealth/brat-parser
Author: Khaled Essam
Author-email: khaled.essam@mendel.ai
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Brat Parser

This library parses brat's ann files and extracts Entities, Relations, Attributes, and Groups

```python
from brat_parser import get_entities_relations_attributes_groups

entities, relations, attributes, groups = get_entities_relations_attributes_groups("/path/to/ann/file.ann")
```


