Metadata-Version: 1.0
Name: Flask-GoogleFed
Version: 0.1
Summary: Google Federated Logins for Flask.
Home-page: https://github.com/kennethreitz/flask-googlefed
Author: Kennneth Reitz
Author-email: me@kennethreitz.com
License: BSD
Description: Google Federated Auth for Flask
        ===============================
        
        Require an account from a given Google Apps domain for your Flask apps.
        
        Great for internal apps on public-facing servers.
        
        
        Usage
        -----
        
        Setup is super simple::
        
            from flask import Flask
            from flask_googlefed import GoogleAuth
        
            app = Flask(__name__)
            app.config['GOOGLE_DOMAIN'] = 'heroku.com'
            app.config['SECRET_KEY'] = 'ssssshhhhh'
        
            auth = GoogleAuth(app)
        
            @app.route('/')
            @auth.required
            def secret():
                return 'ssssshhhhh'
        
        
        Install
        -------
        
        Installation ::
        
            $ pip install flask-googlefed
        
        
        TODO
        ----
        
        Be forewarned, there's work to be done:
        
        - ``g.user`` is always ``None``
        - More generic Google auth would be nice.
        
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
