Spaces:
Sleeping
Sleeping
import streamlit as st | |
from utils import * | |
from client import CobotController | |
render_log_window() | |
user_id = get_user_id() | |
user, passwd, host, endpoint, port = get_credentials(False) | |
client = CobotController(user, passwd, host, port, endpoint, user_id) | |
refresh_once() | |