This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""SurrealDB websocket client library.""" | |
import enum | |
import json | |
from types import TracebackType | |
from typing import Any, Dict, List, Optional, Tuple, Type, Union | |
import pydantic | |
import websockets |