Skip to main content

Doing the OAuth dance with style using Flask, requests, and oauthlib

Project description

Flask-Dance Build status Test coverage Documentation

Doing the OAuth dance with style using Flask, requests, and oauthlib. Currently, only OAuth consumers are supported, but this project could easily support OAuth providers in the future, as well. The full documentation for this project is hosted on ReadTheDocs, including the full list of supported OAuth providers, but this README will give you a taste of the features.

Installation

Just the basics:

$ pip install Flask-Dance

Or if you’re planning on using the SQLAlchemy storage:

$ pip install Flask-Dance[sqla]

Quickstart

If you want your users to be able to log in to your app from any of the supported OAuth providers, you’ve got it easy. Here’s an example using GitHub:

from flask import Flask, redirect, url_for
from flask_dance.contrib.github import make_github_blueprint, github

app = Flask(__name__)
app.secret_key = "supersekrit"
blueprint = make_github_blueprint(
    client_id="my-key-here",
    client_secret="my-secret-here",
)
app.register_blueprint(blueprint, url_prefix="/login")

@app.route("/")
def index():
    if not github.authorized:
        return redirect(url_for("github.login"))
    resp = github.get("/user")
    assert resp.ok
    return "You are @{login} on GitHub".format(login=resp.json()["login"])

If you’re itching to try it out, check out the flask-dance-github example repository, with detailed instructions for how to run this code.

The github object is a context local, just like flask.request. That means that you can import it in any Python file you want, and use it in the context of an incoming HTTP request. If you’ve split your Flask app up into multiple different files, feel free to import this object in any of your files, and use it just like you would use the requests module.

You can also use Flask-Dance with any OAuth provider you’d like, not just the pre-set configurations. See the documentation for how to use other OAuth providers.

Storages

By default, OAuth access tokens are stored in Flask’s session object. This means that if the user ever clears their browser cookies, they will have to go through the OAuth dance again, which is not good. You’re better off storing access tokens in a database or some other persistent store, and Flask-Dance has support for swapping out the token storage. For example, if you’re using SQLAlchemy, set it up like this:

from flask_sqlalchemy import SQLAlchemy
from flask_dance.consumer.storage.sqla import OAuthConsumerMixin, SQLAlchemyStorage

db = SQLAlchemy()

class User(db.Model):
    id = db.Column(db.Integer, primary_key=True)
    # ... other columns as needed

class OAuth(OAuthConsumerMixin, db.Model):
    user_id = db.Column(db.Integer, db.ForeignKey(User.id))
    user = db.relationship(User)

# get_current_user() is a function that returns the current logged in user
blueprint.storage = SQLAlchemyStorage(OAuth, db.session, user=get_current_user)

The SQLAlchemy storage seamlessly integrates with Flask-SQLAlchemy, as well as Flask-Login for user management, and Flask-Caching for caching.

Full Documentation

This README provides just a taste of what Flask-Dance is capable of. To see more, read the documentation on ReadTheDocs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-Dance-3.3.0.tar.gz (131.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

Flask_Dance-3.3.0-py2.py3-none-any.whl (55.6 kB view details)

Uploaded Python 2Python 3

Flask_Dance-3.3.0-py2.7.egg (122.6 kB view details)

Uploaded Egg

File details

Details for the file Flask-Dance-3.3.0.tar.gz.

File metadata

  • Download URL: Flask-Dance-3.3.0.tar.gz
  • Upload date:
  • Size: 131.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.2

File hashes

Hashes for Flask-Dance-3.3.0.tar.gz
Algorithm Hash digest
SHA256 a05271b5d91022c4508b5eebade1e57dc25f02eb4f656b367177b6b8e1e3cdb7
MD5 2548d5741924f601e4a728511756c8fe
BLAKE2b-256 18ef3fb218900a3137bb3013a6189220b771e544611d76f353a4706226062723

See more details on using hashes here.

File details

Details for the file Flask_Dance-3.3.0-py2.py3-none-any.whl.

File metadata

  • Download URL: Flask_Dance-3.3.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 55.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.2

File hashes

Hashes for Flask_Dance-3.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 95b25c506481e20733cc7f345efb5902cb1c85ad4cfeb6b368ba98ddf4eae5d2
MD5 990cec77bd6ab8f89a1d263bd4da5dbe
BLAKE2b-256 2e99a94b03f8f0fb21cbcef4d69797df6dc45a09604b0015d40bea201a951c50

See more details on using hashes here.

File details

Details for the file Flask_Dance-3.3.0-py2.7.egg.

File metadata

  • Download URL: Flask_Dance-3.3.0-py2.7.egg
  • Upload date:
  • Size: 122.6 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.2

File hashes

Hashes for Flask_Dance-3.3.0-py2.7.egg
Algorithm Hash digest
SHA256 6dcc60f0fe3dd2d2eafa6cc36144b87cca1292c971900628f5903d111c72c3c9
MD5 578f4f8027dd3b9f9ab9b01e85ecd765
BLAKE2b-256 2d57524d1ada563d15e4c9c26c9f22dcb40f1b1474c8dea3b68431f2110baa51

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page