Metadata-Version: 1.0
Name: wsgiakismet
Version: 0.1
Summary: Akismet SPAM blocking WSGI middleware.
Home-page: UNKNOWN
Author: L. C. Rees
Author-email: lcrees@gmail.com
License: BSD
Description: Validates form submissions against the Akismet service
        to verify that they are not spam.
        
        Simple usage example:
        
        import cgi
        from wsgiakismet import akismet
        
        # Wordpress API Key and website name are required arguments
        @akisimet('3489012ab121', 'http://blog.example.com/')
        def app(env, start_response):
        usersub = cgi.parse(fp=env['wsgi.input'], environ=env)
        start_response('200 OK', [('Content-type', 'text/plain')])
        return ['Comment is %s' % usersub['comment'][0]]
        
Keywords: WSGI comment spam blocking blog middleware web HTTP
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
