Skip to content

Instantly share code, notes, and snippets.

@ricklentz
Created May 25, 2017 01:25
Show Gist options
  • Save ricklentz/d955dc63fc2eff3d71c4444000a16bd0 to your computer and use it in GitHub Desktop.
Save ricklentz/d955dc63fc2eff3d71c4444000a16bd0 to your computer and use it in GitHub Desktop.
from socket import *
serverSocket = socket(AF_INET, SOCK_DGRAM)
serverSocket.bind(('', 24000))
message, address = serverSocket.recvfrom(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment