Skip to content

flask-tutorial/flask-and-social

Repository files navigation

Example App

This is an example web app written with flask. It shows how you can use flask in combination with facebook, twitter and WhatsApp.

share and enjoy!

copy config-sample.py to config.py and edit it

create the sqlite-database:

sqlite3 ./database.db < schema.sql

start the webserver locally:

python flaskfile.py

or, if you are deploying to a real webserver, set up wsgi:

import sys
path = '..../flask-and-social'

if path not in sys.path:
  sys.path.insert(0, path)

from flaskfile import app as application

About

example app showing some connections to social networks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published