Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
162B

  1. from abp.server import Server
  2. import time
  3. server = Server()
  4. server.start()
  5. i=0
  6. while True:
  7. server.update(i)
  8. i += 1
  9. time.sleep(1)
  10. server.shutdown()