Skip to content

Instantly share code, notes, and snippets.

@mmisono
Created April 11, 2010 13:43
Show Gist options
  • Save mmisono/362719 to your computer and use it in GitHub Desktop.
Save mmisono/362719 to your computer and use it in GitHub Desktop.
import socket
import sys
PORT = 50000
s = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
s.connect(('localhost',PORT))
s.send(sys.argv[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment