Files
sdk-notion/notion/orm/extrators/__init__.py
T

8 lines
177 B
Python
Raw Normal View History

from .Properties import PropertyExtractor as _PropertyExtractor
class Extrator:
def __init__(self) -> None:
self.props = _PropertyExtractor
__all__ = ["Extrator"]