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.

15 lines
180B

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