text
dan
·
client
·
Plain Text
·
Total Size: 211 B
·
·
Created: 5 years ago
·
Edited: 5 years ago
import socket
clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
clientsocket.connect(('localhost', 8089))
clientsocket.send('hello')
The client portion of the server/client model in python
2 bits
•
1171 views
Are you sure you want to delete?
embluk
15-02-2020 22:22:47
Replies to this comment are locked.
Nice! Very nice!