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-2.2.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

Flask_Dance-2.2.0-py3.7.egg (49.2 kB view details)

Uploaded Source

Flask_Dance-2.2.0-py2.py3-none-any.whl (50.1 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

  • Download URL: Flask-Dance-2.2.0.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for Flask-Dance-2.2.0.tar.gz
Algorithm Hash digest
SHA256 83d6f8d684150ac8fe7d4f2ad8d71170c3233831a09601eb0e5b40d0c28e337d
MD5 e89af1cc0d5400798011ae1d275fed88
BLAKE2b-256 b7e4a6c9b12e2080edddd4bc6fa6d43165d3c27a594cb9d67914babd5d705d78

See more details on using hashes here.

Provenance

File details

Details for the file Flask_Dance-2.2.0-py3.7.egg.

File metadata

  • Download URL: Flask_Dance-2.2.0-py3.7.egg
  • Upload date:
  • Size: 49.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for Flask_Dance-2.2.0-py3.7.egg
Algorithm Hash digest
SHA256 ad58ce046454916df3692ba38ae6ee0e0344ee227999124b7b86d923f4a68262
MD5 a0a20f3135edd3f5a5c213cab98c3af3
BLAKE2b-256 6be96420dad7eb5ef25f5184619dfaa2b2ebc5feb3469f06e885d883a488a699

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for Flask_Dance-2.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c3fd1da1c93ada28092e83a5eb843def82701d6d56bd03a512a2e008a25ec106
MD5 e56a8cd7486dd6456fac74f966f3f452
BLAKE2b-256 dfca7b3f49fd826fe745a1b061894f6e02048632a508a0bae9d35dfbe37b235a

See more details on using hashes here.

Provenance

Supported by

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