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
| """This module provides a python client for rosbridge to publish, subscribe topics, | |
| call services, create service server and use action client. | |
| """ | |
| import threading | |
| import time | |
| import json | |
| import uuid | |
| from ws4py.client.threadedclient import WebSocketClient | |
| from pydispatch import dispatcher |