Spaces:
Sleeping
Sleeping
Create init.py
Browse files- parser/init.py +13 -0
parser/init.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Legal Document Parser Module
|
| 3 |
+
محلل المستندات القانونية
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
from .assembler import LegalDocumentParser, parse_legal_document, get_document_summary, search_in_document
|
| 7 |
+
|
| 8 |
+
__all__ = [
|
| 9 |
+
'LegalDocumentParser',
|
| 10 |
+
'parse_legal_document',
|
| 11 |
+
'get_document_summary',
|
| 12 |
+
'search_in_document'
|
| 13 |
+
]
|