-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathConnectionInfo.py
29 lines (22 loc) · 949 Bytes
/
ConnectionInfo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import json
from typing import Dict, Any
class ConnectionInfo:
def __init__(self, node: str, input: str):
self.node = node
self.input = input
def __eq__(self, other: object) -> bool:
if not isinstance(other, ConnectionInfo):
return False
return self.node == other.node and self.input == other.input
def __repr__(self) -> str:
return f"ConnectionInfo(node={self.node}, input={self.input})"
def __str__(self) -> str:
"""Return a JSON-like string representation of the object."""
return json.dumps(self, default=vars)
def to_dict(self) -> Dict[str, Any]:
return {"node": self.node, "input": self.input}
@classmethod
def from_dict(cls, data: Dict[str, Any]) -> 'ConnectionInfo':
return cls(node=data["node"], input=data["input"])
def copy(self) -> 'ConnectionInfo':
return ConnectionInfo(node=self.node, input=self.input)