aamanlamba's picture
Add Apache Atlas export, graph interactivity, and polish
b304992
raw
history blame contribute delete
707 Bytes
"""
Data Lineage Exporters - Export lineage graphs to various data catalog formats.
Supported formats:
- OpenLineage (standard format)
- Collibra Data Intelligence
- Microsoft Purview
- Alation Data Catalog
- Apache Atlas
"""
from .base import LineageExporter, LineageGraph, LineageNode, LineageEdge
from .openlineage import OpenLineageExporter
from .collibra import CollibraExporter
from .purview import PurviewExporter
from .alation import AlationExporter
from .atlas import AtlasExporter
__all__ = [
'LineageExporter',
'LineageGraph',
'LineageNode',
'LineageEdge',
'OpenLineageExporter',
'CollibraExporter',
'PurviewExporter',
'AlationExporter',
'AtlasExporter',
]