Skip to content

Instantly share code, notes, and snippets.

@evernick
Created June 17, 2015 05:24
Show Gist options
  • Save evernick/a4fe49fb1e4809212d03 to your computer and use it in GitHub Desktop.
Save evernick/a4fe49fb1e4809212d03 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from socket import *
if __name__ == "__main__":
s = socket(AF_INET, SOCK_STREAM)
s.connect(('127.0.0.1', 9000))
s.send('Sock Client Send\n')
s.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment