Skip to content

Instantly share code, notes, and snippets.

@j0lvera
Created February 20, 2015 01:34
Show Gist options
  • Save j0lvera/b4c7f2e0c13659480393 to your computer and use it in GitHub Desktop.
Save j0lvera/b4c7f2e0c13659480393 to your computer and use it in GitHub Desktop.
Validate url
def is_url(url):
parsed_url = urlparse.urlparse(url)
return bool(parsed_url.scheme)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment