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

Uploaded Source

Built Distributions

Flask_Dance-3.0.0-py3.7.egg (112.3 kB view details)

Uploaded Source

Flask_Dance-3.0.0-py2.py3-none-any.whl (50.6 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

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

File hashes

Hashes for Flask-Dance-3.0.0.tar.gz
Algorithm Hash digest
SHA256 5ec8fae543ef93aab96d6a4c6d34ed835c793e2f6a211212a89a4e9c31c42bed
MD5 794db1b65dbb5221644a6ff5c201548d
BLAKE2b-256 e41b14e319de35a7680db7ae189d883d4c11448807ae0f246f2b9d808d6b101e

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for Flask_Dance-3.0.0-py3.7.egg
Algorithm Hash digest
SHA256 8f567087e8308bdeb225638d581b93e3b1d671871f8de394beb6c45923497e89
MD5 a70ee562f6f5f5357d51def7cc28e90c
BLAKE2b-256 a00065aaadba568707f41583ca0a7e465f8cc4c4858c811ffd78c9f04ad35008

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for Flask_Dance-3.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1b30ea6765ca2a9c5c15eb00a18e18f8c347a4bf2f9947b68ff0024c4c7d1dfa
MD5 a3fbe84b50ba8b1ae220158b7aa4dd21
BLAKE2b-256 482281ef0c49d0e4e8af9bfb95e9abe0d54c12e05d0531b8967938eb223b316e

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