python test client

This commit is contained in:
Florian Hoss 2022-05-02 21:02:01 +02:00
parent 50ebe9a5a4
commit 0768877ea8

11
ESPFirewall/app.py Normal file
View file

@ -0,0 +1,11 @@
import socket
sock = socket.socket()
host = "10.93.0.246"
port = 80
sock.connect((host, port))
sock.send("test".encode())
sock.close()