Last active
October 27, 2015 14:47
-
-
Save WilliamGarrow/61829faf65cc7ec5e1f7 to your computer and use it in GitHub Desktop.
Python - Flask and SQLAlchemy database setup for LTI Xblock local development
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask | |
from sqlalchemy import create_engine | |
from sqlalchemy.orm import sessionmaker | |
from database_setup import Base, Xblock, CaliperItem | |
app = Flask(__name__) | |
engine = create_engine('sqlite:///lti_compliance.db') | |
Base.metadata.bind = engine | |
DBSession = sessionmaker(bind=engine) | |
session = DBSession() | |
@app.route('/') | |
@app.route('/construct') | |
def Structure(): | |
xblock = session.query(Xblock).first() | |
items = session.query(CaliperItem).filter_by(xblock_id=xblock.id) | |
output = '' | |
for i in items: | |
output += i.name | |
output += '</br>' | |
return output | |
if __name__ == '__main__': | |
app.debug = True | |
app.run(host='0.0.0.0', port=8000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment