client now connects to public server

This commit is contained in:
Lexi / Zoe 2018-11-12 21:47:47 +01:00
parent a7cf851c90
commit 94e5e7f96c
3 changed files with 4 additions and 2 deletions

View file

@ -16,7 +16,7 @@ async def hello(websocket, path):
await websocket.send(greeting)
print(f"> {greeting}")
start_server = websockets.serve(hello, '0.0.0.0', 8765)
start_server = websockets.serve(hello, '0.0.0.0', 32715)
asyncio.get_event_loop().run_until_complete(start_server)
asyncio.get_event_loop().run_forever()