Socket ile gelen verileri değişkenlere nasıl atarım?

Kodu güncelledim, bu konuyu da SSS’e ekledim.

#server.py
from microstream import Server, localhost

s = Server()
s.bind((localhost, 12345))
s.listen(1)

c = s.accept()
obj = c.recv_obj()
assert obj == ["merhaba", "dünya", 1, -3.4, None]
#client.py
from microstream import Client, localhost

c = Client()
c.connect((localhost, 12345))

obj = ["merhaba", "dünya", 1, -3.4, None]

c.send_obj(obj)

Verdiğiniz bilgiler için de teşekkür ederim.

1 Beğeni