Skip to content

Instantly share code, notes, and snippets.

@unmaykr-aftermath
Created January 24, 2025 19:37
Show Gist options
  • Save unmaykr-aftermath/f78fc3c74cc4f43c612accfdf46957b0 to your computer and use it in GitHub Desktop.
Save unmaykr-aftermath/f78fc3c74cc4f43c612accfdf46957b0 to your computer and use it in GitHub Desktop.
Get a random port number that's not being used already
#!/usr/bin/env python3
# https://superuser.com/a/1671326/2303366
import socket; s = socket.socket(); s.bind(('', 0));print(s.getsockname()[1]);s.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment