tessl install tessl/pypi-pynetworktables@2021.0.0A pure Python implementation of NetworkTables, used for robot communications in the FIRST Robotics Competition.
Agent Success
Agent success rate when using this tile
75%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.01x
Baseline
Agent success rate without this tile
74%
Design a lightweight session helper that boots the package's default messaging instance in an in-memory mode, exposes its primary key-value table, and coordinates a local client connection for reading and writing values.
@generates
from typing import Any
class InstanceSession:
def __init__(self, identity: str = "session", port: int = 0) -> None: ...
def start(self) -> None: ...
def connect_local_client(self) -> None: ...
def publish(self, key: str, value: Any) -> None: ...
def read(self, key: str) -> Any: ...
def stop(self) -> None: ...Provides default instance management, in-memory messaging, and table-based key/value access.