Add files via upload

Client for testing
This commit is contained in:
DJ2LS 2020-12-23 17:49:25 +01:00 committed by GitHub
parent fe25ce68b8
commit d5922281a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
socketclient.py Normal file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Fri Dec 11 21:53:35 2020
@author: parallels
"""
import socket
import sys
HOST, PORT = "localhost", 3000
data = " ".join(sys.argv[1:])
# Create a socket (SOCK_STREAM means a TCP socket)
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
# Connect to server and send data
sock.connect((HOST, PORT))
sock.sendall(bytes(data + "\n", "utf-8"))
# Receive data from the server and shut down
received = str(sock.recv(1024), "utf-8")
print("Sent: {}".format(data))
print("Received: {}".format(received))