gwp 0.2.1

A standalone, pure Rust gRPC wire protocol for GQL (ISO/IEC 39075)
Documentation
"""GWP - Python client for the GQL Wire Protocol."""

from gwp_py.connection import GqlConnection
from gwp_py.catalog import (
    CatalogClient,
    CreateGraphConfig,
    GraphInfo,
    GraphTypeInfo,
    SchemaInfo,
)
from gwp_py.errors import (
    ConnectionError as GqlConnectionError,
    GqlError,
    GqlStatusError,
    SessionError,
    TransactionError,
)
from gwp_py.result import ResultCursor, ResultSummary
from gwp_py.session import GqlSession
from gwp_py.transaction import Transaction
from gwp_py.types import (
    Edge,
    Field,
    GqlDate,
    GqlDuration,
    GqlLocalDateTime,
    GqlLocalTime,
    GqlZonedDateTime,
    GqlZonedTime,
    Node,
    Path,
    Record,
)

__version__ = "0.1.2"

__all__ = [
    "GqlConnection",
    "GqlSession",
    "CatalogClient",
    "SchemaInfo",
    "GraphInfo",
    "GraphTypeInfo",
    "CreateGraphConfig",
    "ResultCursor",
    "ResultSummary",
    "Transaction",
    "GqlError",
    "GqlStatusError",
    "GqlConnectionError",
    "SessionError",
    "TransactionError",
    "Node",
    "Edge",
    "Path",
    "GqlDate",
    "GqlLocalTime",
    "GqlZonedTime",
    "GqlLocalDateTime",
    "GqlZonedDateTime",
    "GqlDuration",
    "Record",
    "Field",
]