Skip to content

Instantly share code, notes, and snippets.

@toorusr
Created May 28, 2018 00:40
Show Gist options
  • Save toorusr/963f173f9dd45969e8f178f05df56b65 to your computer and use it in GitHub Desktop.
Save toorusr/963f173f9dd45969e8f178f05df56b65 to your computer and use it in GitHub Desktop.
Github Username Checker Script
import requests as req
import sys
argv = sys.argv[1]
rsp = req.get("https://github.com/{}".format(argv))
if str(rsp) == "<Response [200]>":
print("exists;")
else:
print("free;")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment