Created
December 9, 2019 16:19
-
-
Save ThoenigAdrian/8a1ed29124f34123afe3baaa1c980f66 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
s.connect(("127.0.0.1", 80)) | |
#s.send() | |
#print(s.recv(1024)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment