from bridge import Bridge from fish_show import FishShow from constants import * import sys sys.path.append('webapp') from run import server_thread, send_queue, recv_queue def run_show(): server_thread.start() bridge = Bridge() show = FishShow(bridge, send_queue=recv_queue, recv_queue=send_queue) #show = SunriseShow(bridge) show.run(framerate=FRAME_RATE) run_show()