Metadata-Version: 1.1
Name: stopforumspam-api
Version: 0.0.1
Summary: Basic interface for Stop Forum Spam API
Home-page: UNKNOWN
Author: Stephen Paulger
Author-email: stephen.paulger@newspeak.org.uk
License: UNKNOWN
Description: Overview
        =======
        
        Designed to be a very basic but easy to use interface to the StopForumSpam API.
        At present only querying facilities are provided, I may add an interface for adding data to StopForumSpam.
        
        
        Alternatives
        ============
        
        If you're using Django you may wish to use the the more mature [stopforumspam](https://github.com/benjaoming/django-stopforumspam).
        
        
        Example
        =======
        
        ```python
        >>> from stopforumspam_api import query
        >>> r=query(ip="199.115.114.220")
        >>> r.appears()
        True
        >>> r.ip.appears
        True
        >>> r.ip.frequency
        17
        >>> r.ip.lastseen
        datetime.datetime(2015, 5, 5, 20, 32, 35)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
