Metadata-Version: 1.0
Name: wsgihatenaauth
Version: 0.1dev
Summary: wsgi middlewar
Home-page: UNKNOWN
Author: Atsushi Odagiri
Author-email: aodagx@gmail.com
License: BSD
Description: wsgi middle ware to authorization with Hatena Auth API.
        
        usage::
        from wsgiref.simple_server import make_server, demo_app
        from wsgihatenaauth import HatenaAuthHandler
        
        apiKey = yourHatenaAuthApiKey
        secret = yourHatenaAuthSercretKey
        
        app = HatenaAuthHandler(apiKey=apiKey, secret=secret)(demo_app)
        httpd = make_server('', 8000, app)
        httpd.serve_forever()
        
        
Keywords: wsgi middleware
Platform: UNKNOWN
