-
Notifications
You must be signed in to change notification settings - Fork 34
Home
Aleksanderdir edited this page Jul 17, 2022
·
1 revision
Welcome to the jsonsocket wiki! from jsonsocket import Client, Server
host = 'localhost' port = '8000'
client = Client() client.connect(host, port).send({'some_list': [123, 456]}) response = client.recv()
client.close()
server = Server(host, port) server.accept() data = server.recv()
server.send({'data': data}).close()