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

10 lines
200 B
Python
Raw Normal View History

from .PageProperties import PageProperties as _PageProperties
class _Parser:
def __init__(self) -> None:
self.page_props = _PageProperties.parse
Parser = _Parser()
__all__ = ["Parser"]