Skip to content

Instantly share code, notes, and snippets.

@pathologicalhandwaving
Created July 3, 2014 14:55
Show Gist options
  • Save pathologicalhandwaving/1f7c1024a31bd350e6cb to your computer and use it in GitHub Desktop.
Save pathologicalhandwaving/1f7c1024a31bd350e6cb to your computer and use it in GitHub Desktop.
def get_free_port():
s = socket.socket()
s.bind(('', 0))
port = s.getsockname()[1]
s.close()
return port
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment