Metadata-Version: 1.0
Name: surblclient
Version: 0.1
Summary: Simple client library for the surbl.org blacklists
Home-page: http://github.com/infixfilip/surblclient/tree/master
Author: Filip Salomonsson
Author-email: filip.salomonsson@gmail.com
License: UNKNOWN
Description: SURBL checker (http://www.surbl.org/)
        
        Example usage:
        >>> from surblclient import surbl
        >>> domain = "foo.bar.test.surbl.org"
        >>> domain in surbl
        True
        >>> surbl.lookup(domain)
        ('test.surbl.org', ['sc', 'ws', 'ph', 'ob', 'ab', 'jp'])
        >>> if domain in surbl:
        ...     print "%s blacklisted in %s" % surbl.lookup(domain)
        ...
        test.surbl.org blacklisted in ['sc', 'ws', 'ph', 'ob', 'ab', 'jp']
        
Platform: UNKNOWN
