yes i do thanks for the quick response, i was able to solve that now but i can seem to connect to sqlite   my app is url /home/momoh/public_html/app  this is what i tried 
import sysimport sqlite3from flask import Flask,url_for,render_template,redirect,request,jsonify,flash,session,get_flashed_messages,make_responseapp = Flask(__name__)application = app   #Index page @app.route("/",methods=["POST","GET"]) def index():   conn=sqlite3.connect("fmuzic.db") c=conn.cursor() data=c.execute("select rowid,* from music") return render_template("index.html",data=data)   if __name__ == "__main__":  app.run()