Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gae Boilerplate | 688 | 6 months ago | 43 | other | Python | |||||
Google App Engine Boilerplate | ||||||||||
Gae Init | 536 | 5 months ago | 61 | mit | Python | |||||
Google App Engine based on Python, Flask, RESTful, Bootstrap and tons of other cool features | ||||||||||
Rele | 192 | 2 | 25 days ago | 27 | November 15, 2022 | 23 | apache-2.0 | Python | ||
Easy to use Google Pub/Sub | ||||||||||
Tinygoogle | 182 | 4 months ago | mit | Python | ||||||
A search web app built by Flask and Google CSE | ||||||||||
Flask Engine | 181 | 10 years ago | 2 | Python | ||||||
A Flask skeleton for Google App Engine, using html5 boilerplate templating. | ||||||||||
Pixic | 119 | 2 months ago | 3 | mit | Python | |||||
Pixiv插画批量下载,提供关注画师插画、收藏作品下载(单/多/动图)及API - pixiv爬虫 | ||||||||||
Flask Gae Skeleton | 118 | 12 years ago | 2 | Python | ||||||
Flask skeleton for Google App Engine | ||||||||||
Systematically_self Study_python | 112 | 7 years ago | 1 | gpl-3.0 | ||||||
记录个人自学Python的过程,持续更新。 | ||||||||||
Github Stats | 81 | 4 years ago | 5 | mit | Python | |||||
:star2: GitHub Stats is all about stars, forks, repos, followers and more | ||||||||||
Flask Firebase | 79 | 4 years ago | 4 | Python | ||||||
Google Firebase integration for Flask |
Require an account from a given Google Apps domain for your Flask apps.
Great for internal apps on public-facing servers.
Setup is super simple:
from flask import Flask from flask_googlefed import GoogleAuth app = Flask(__name__) app.secret_key = 'random secret key' app.config['GOOGLE_DOMAIN'] = 'heroku.com' auth = GoogleAuth(app) @app.route('/') @auth.required def secret(): return 'ssssshhhhh'
Installation is equally simple:
$ pip install flask-googlefed
Be sure that your Google Apps domain is enabled to be an OpenID provider under 'Advanced tools' > 'Federated Login using OpenID'
Also, create the required federation end points on your domain. See example.
Be forewarned, there's work to be done:
g.user
is always None