Max Malysh

Results 7 issues of Max Malysh

Hi, First of all, thanks for the fork and for the work done! We're migrating from `Fabric3==1.14.post1` to `fab-classic`. Both packages have the same problem: `parallel` doesn't work with Python...

All these lines produce a `ValidationError: ['Blocked email provider.']` : ``` In [1]: from django.core.exceptions import ValidationError In [2]: from disposable_email_checker.validators import validate_disposable_email In [3]: In [6]: validate_disposable_email('[email protected]') In [7]:...

Hi! I've added Python 3 support by using `basestring` from `future` package (the corresponding import is `past.builtins`), now it works both in Python 2 and 3. Also I've updated `ethereum`...

In case somebody else will be looking for this, Django 4.0 is not supported at the moment: ``` django.template.library.InvalidTemplateLibrary: Invalid template library specified. ImportError raised when trying to load 'markdown_deux.templatetags.markdown_deux_tags':...

Check this: ``` >>> email_checker.is_disposable('[email protected]') True >>> email_checker.is_disposable('[email protected]') True >>> email_checker.is_disposable('[email protected]') True >>> email_checker.is_disposable('[email protected]') True >>> email_checker.is_disposable('[email protected]') True ``` I'm using `disposable_email_domains.txt` from the repository.

Should use these scripts for travis and appveyor.

enhancement

Should check for runtime exceptions (e.g. ZeroDivisionError).

enhancement