Re: Ann: Validating Emails and HTTP URLs in Python

2010-05-04 Thread livibetter
First, it's good to see a library has URL and email validator. But I found there might be a problem in your validator, the problems I found are these URLs: http://example.com/path http://example.com/path) http://example.com/path] http://example.com/path} By my understanding from RFCs, on

Re: Ann: Validating Emails and HTTP URLs in Python

2010-05-03 Thread Philip Semanchuk
On May 3, 2010, at 10:13 AM, andrew cooke wrote: FYI, Fourthought's PyXML has a module called uri.py that contains regexes for URL validation. I've over a million URLs (harvested from the Internet) through their code. I can't say I checked each and every result, but I never saw anything that

Re: Ann: Validating Emails and HTTP URLs in Python

2010-05-03 Thread andrew cooke
> FYI, Fourthought's PyXML has a module called uri.py that contains   > regexes for URL validation. I've over a million URLs (harvested from   > the Internet) through their code. I can't say I checked each and every   > result, but I never saw anything that would lead me to believe it was   > misbe

Re: Ann: Validating Emails and HTTP URLs in Python

2010-05-03 Thread Philip Semanchuk
On May 3, 2010, at 9:06 AM, andrew cooke wrote: Hi, The latest Lepl release includes an implementation of RFC 3696 - the RFC that describes how best to validate email addresses and HTTP URLs. For more information please see http://www.acooke.org/lepl/rfc3696.html Lepl's main page is http://

Ann: Validating Emails and HTTP URLs in Python

2010-05-03 Thread andrew cooke
Hi, The latest Lepl release includes an implementation of RFC 3696 - the RFC that describes how best to validate email addresses and HTTP URLs. For more information please see http://www.acooke.org/lepl/rfc3696.html Lepl's main page is http://www.acooke.org/lepl Because Lepl compiles to regula