feat(v2): add snapshot extractor framework and run command
This commit is contained in:
22
apps/ingestion/extractors/__init__.py
Normal file
22
apps/ingestion/extractors/__init__.py
Normal file
@ -0,0 +1,22 @@
|
||||
from .base import (
|
||||
BaseSnapshotExtractor,
|
||||
ExtractionResult,
|
||||
ExtractorConfigError,
|
||||
ExtractorError,
|
||||
ExtractorFetchError,
|
||||
ExtractorNormalizationError,
|
||||
ExtractorParseError,
|
||||
)
|
||||
from .registry import available_extractors, create_extractor
|
||||
|
||||
__all__ = [
|
||||
"BaseSnapshotExtractor",
|
||||
"ExtractionResult",
|
||||
"ExtractorError",
|
||||
"ExtractorConfigError",
|
||||
"ExtractorFetchError",
|
||||
"ExtractorParseError",
|
||||
"ExtractorNormalizationError",
|
||||
"available_extractors",
|
||||
"create_extractor",
|
||||
]
|
||||
Reference in New Issue
Block a user