Metadata-Version: 1.1
Name: senderbase
Version: 0.2
Summary: A screen scraper for the senderbase.org website
Home-page: https://github.com/meatheadmike/senderbase
Author: Mike Skovgaard
Author-email: mikesk@gmail.com
License: MIT
Description: Senderbase
        ==========
        A python-based screen scraper for the senderbase.org website
        
        Installation
        ============
        Pip install::
        
          sudo pip install senderbase
          
        Source install::
        
          git clone https://github.com/meatheadmike/senderbase
          cd senderbase
          python setup.py test
          sudo python setup.py install
        
        Usage
        =====
        In your code::
        
          from senderbase import SenderBase 
           
          sb = SenderBase(timeout=30) 
          my_result = sb.lookup('8.8.8.8') 
        
        Notes
        =====
        - This module has only been tested with python 2.7.
        - Make sure you limit your queries to 1000 per day or less. Be a good netizen!
        - I do not work for or with senderbase. This module will likely break in the future if/when senderbase updates their page!
        
Keywords: senderbase development email spam
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
