Skip to content

Instantly share code, notes, and snippets.

View imrekel's full-sized avatar

Imre Kelényi imrekel

  • Bitrise
  • Budapest, Hungary
View GitHub Profile
@imrekel
imrekel / email_validator.py
Created September 9, 2012 11:29
Email validator module using Django
from django.forms import EmailField
from django.core.exceptions import ValidationError
def isEmailAddressValid( email ):
try:
EmailField().clean(email)
return True
except ValidationError:
return False