Started creating server plugin

This commit is contained in:
2020-09-30 13:32:23 +02:00
parent ec2d75e896
commit aa5392b70b
6 changed files with 74 additions and 0 deletions

12
sockettest.py Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env python3
import socket
HOST = '127.0.0.1' # The server's hostname or IP address
PORT = 3333 # The port used by the server
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.connect((HOST, PORT))
s.sendall(b'Pieter suckt\n')
data = s.recv(1024)
print('Received', repr(data))