From 4d6495dfdd455f88c250db5670b60dccc5e147ff Mon Sep 17 00:00:00 2001 From: Jonas Haag Date: Tue, 24 Apr 2018 14:25:57 +0200 Subject: [PATCH] Fix #136 --- README.md | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f51d65f6..ed2a7c77 100644 --- a/README.md +++ b/README.md @@ -64,14 +64,14 @@ if not MailChecker.is_valid('bla@example.com'): ------------------------- MailChecker currently supports: -* [NodeJS](https://github.com/FGRibreau/mailchecker/tree/master/platform/node) (CommonJS) -* [JavaScript](https://github.com/FGRibreau/mailchecker/tree/master/platform/javascript) (Client-Side) -* [PHP](https://github.com/FGRibreau/mailchecker/tree/master/platform/php) -* [Python](https://github.com/FGRibreau/mailchecker/tree/master/platform/python) -* [Ruby](https://github.com/FGRibreau/mailchecker/tree/master/platform/ruby) -* [Rust](https://github.com/FGRibreau/mailchecker/tree/master/platform/rust) -* [Elixir](https://github.com/FGRibreau/mailchecker/tree/master/platform/elixir) -* [Clojure](https://github.com/FGRibreau/mailchecker/tree/master/platform/clojure) +* [NodeJS](https://github.com/FGRibreau/mailchecker/tree/master/platform/node) (CommonJS, [Instructions](#nodejs)) +* [JavaScript](https://github.com/FGRibreau/mailchecker/tree/master/platform/javascript) (Client-Side, [Instructions](#javascript)) +* [PHP](https://github.com/FGRibreau/mailchecker/tree/master/platform/php) ([Instructions](#php)) +* [Python](https://github.com/FGRibreau/mailchecker/tree/master/platform/python) ([Instructions](#python)) +* [Ruby](https://github.com/FGRibreau/mailchecker/tree/master/platform/ruby) ([Instructions](#ruby)) +* [Rust](https://github.com/FGRibreau/mailchecker/tree/master/platform/rust) ([Instructions](#rust)) +* [Elixir](https://github.com/FGRibreau/mailchecker/tree/master/platform/elixir) ([Instructions](#elixir)) +* [Clojure](https://github.com/FGRibreau/mailchecker/tree/master/platform/clojure) ([Instructions](#clojure)) * **Easily add support for your own language with MailChecker template system and [send us a pull-request!](https://github.com/FGRibreau/mailchecker/fork_select)** ------------------------- @@ -123,6 +123,10 @@ if(!MailChecker::isValid('myemail.com')){ ### Python +``` +pip install mailchecker +``` + ```python # no package yet; just drop in MailChecker.py where you want to use it. import MailChecker @@ -131,6 +135,8 @@ if not MailChecker.is_valid('bla@example.com'): print "O RLY !" ``` +Django validator: https://github.com/jonashaag/django-indisposable + ### Ruby [![Build Status](https://travis-ci.org/FGRibreau/mailchecker.svg)](https://travis-ci.org/FGRibreau/mailchecker) ```ruby