From 837649d1a0023480cfc0576ddb9ff2f1532a10c1 Mon Sep 17 00:00:00 2001 From: Martin Cech Date: Tue, 6 Dec 2016 10:07:48 -0500 Subject: [PATCH] add link to PyPI module, thanks to @di --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 7345028..1745521 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,14 @@ if email.split('@')[1] in blacklist_content: else: return True ``` + +Available as [PyPI module](https://pypi.python.org/pypi/disposable-email-domains) thanks to @di +``` +>>> from disposable_email_domains import blacklist +>>> 'bearsarefuzzy.com' in blacklist +True +``` + **PHP** contributed by @txt3rob and @deguif ```php function is_temp_mail($mail) { @@ -64,4 +72,6 @@ to add contents of another file in the same format (only second level domains on Changelog ============ + +12/6/16 - Available as [PyPI module](https://pypi.python.org/pypi/disposable-email-domains) thanks to @di 7/27/16 - Converted all domains to the second level. This means that starting from [this commit](https://github.com/martenson/disposable-email-domains/commit/61ae67aacdab0b19098de2e13069d7c35b74017a) the implementers should take care of matching the second level domain names properly i.e. `@xxx.yyy.zzz` should match `yyy.zzz` in blacklist more info in [#46](https://github.com/martenson/disposable-email-domains/issues/46)