16 lines
342 B
Python
16 lines
342 B
Python
|
|
"""
|
||
|
|
Infospace analysis package.
|
||
|
|
|
||
|
|
Provides tooling for extracting structured metadata from entity markdown
|
||
|
|
files and analysing infospace collections.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .models import EntityMeta
|
||
|
|
from .entity_parser import parse_entity_file, parse_entity_directory
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"EntityMeta",
|
||
|
|
"parse_entity_file",
|
||
|
|
"parse_entity_directory",
|
||
|
|
]
|