Skip to content

Instantly share code, notes, and snippets.

@manevant
Forked from Taormina/validate.py
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save manevant/ad692c9171e28954277d to your computer and use it in GitHub Desktop.

Select an option

Save manevant/ad692c9171e28954277d to your computer and use it in GitHub Desktop.
import requests
def checkName(name):
values = { "new_username" : name }
r = requests.post("https://login.skype.com/json/validator", values)
return "not available" in r.json()[u'data'][u'markup']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment