Metadata-Version: 1.0
Name: flask-oauthprovider
Version: 0.1.0
Summary: A full featured and secure OAuth provider base
Home-page: https://github.com/ib-lundgren/flask-oauthprovider
Author: Ib Lundgren
Author-email: ib.lundgren@gmail.com
License: Copyright (c) 2010-2011, Ib Lundgren and contributors.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

Neither the name of Ib Lundgren nor the names of its contributors may be used
to endorse or promote products derived from this software without specific
prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.

Description: Flask-OAuthProvider
        ===================
        
        Flask-OAuthProvider is an extension that makes it easy to secure your views 
        with OAuth::
        
            @provider.require_oauth()
            def user_feed(self):
                ...
        
        It gives you fine grained control over access through the use of *realms*::
        
            @provider.require_oauth(realm="photos")
            def user_photos(self):
                ...
        
        As well as the OAuth parameters such as client key and token::
        
            @provider.require_oauth()
            def whoami(self):
                return request.oauth.client_key
        
        
        **Note this extension does NOT give you an OAuth client.** For that simply use
        `requests`_ which has OAuthLib backed OAuth support built in. If you want to
        know more about OAuth check out the excellent guide at `hueniverse`_ or dig
        into the very readable `OAuth 1 RFC 5849 spec`_.
        
        .. _`requests`: https://github.com/kennethreitz/requests
        .. _`hueniverse`: http://hueniverse.com/oauth/
        .. _`OAuth 1 RFC 5849 spec`: http://tools.ietf.org/html/rfc5849
        
        Usage
        -----
        
        Flask-OAuthProvider builds opon OAuthLib and its `OAuth 1 RFC 5849 Server`_ class.
        You will need to implement a number of abstract methods, required from either
        Server (`OAuthLib`_) or OAuthProvider(Flask-OAuthProvider). These methods are 
        mainly data storage or retrieval methods. No assumptions are made about
        the persistence system you use and as such you are free to use any you see fit.
        
        Take a look at the example application for a fully working, SQLite / SQLAlchemy
        backed OAuth provider in the `/examples`_ folder.
        
        While implementing your provider class you want to give `OAuthLib Server docs`_
        and the `OAuthProvider source`_ a thorough read.
        
        When done, it will be easy to secure your API with OAuth::
        
            app = Flask(__name__)
            provider = YourProvider(app)
        
            @app.route("/my_secrets")
            @provider.require(realm="secrets")
            def my_secrets(self):
                ...
        
        
        .. _`OAuth 1 RFC 5849 Server`: https://github.com/idan/oauthlib/blob/master/oauthlib/oauth1/rfc5849/__init__.py
        .. _`OAuthLib`: https://github.com/idan/oauthlib
        .. _`/examples`: https://github.com/ib-lundgren/flask-oauthprovider/tree/master/examples
        .. _`OAuthLib Server docs`: https://github.com/idan/oauthlib/blob/master/docs/server.rst
        .. _`OAuthProvider source`: https://github.com/ib-lundgren/flask-oauthprovider/blob/master/flask_oauthprovider.py
        
        Install
        -------
        
        Flask-OAuthProvider is easily installed using pip::
        
            pip install flask-oauthprovider
        
Platform: UNKNOWN
