You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pyreactor/test_server.py

9 lines
169 B
Python

12 years ago
import pyreactor, time
from testclient import TestClient
12 years ago
s = pyreactor.Server("0.0.0.0", 4006, TestClient)
12 years ago
reactor = pyreactor.Reactor()
reactor.add(s)
reactor.loop()