码迷,mamicode.com
首页 > 数据库 > 详细

连接mysql数据库,创建用户模型

时间:2017-11-14 21:21:27      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:root   test   from   word   set   har   模型   l数据库   ati   

from flask import Flask
from flask_sqlalchemy import  SQLAlchemy
import config

app=Flask(__name__)
app.config.from_object(config)
db=SQLAlchemy(app)
db.create_all()

class User(db.Model):
    __tablename__ = ‘user‘
    id = db.Column(db.Integer,primary_key=True,autoincrement=True)
    username = db.Column(db.String(20),nullable=False)
    password = db.Column(db.String(20),nullable=False)

db.create_all()
@app.route(‘/‘)
def hello_world():
    return ‘Hello World!‘


if __name__==‘__main__‘:
    app.run()

  

SQLALCHEMY_DATABASE_URI = ‘mysql+pymysql://root:@localhost:3306/test?charset=utf8‘
SQLALCHEMY_TRACK_MODIFICATIONS = False

  技术分享

 

连接mysql数据库,创建用户模型

标签:root   test   from   word   set   har   模型   l数据库   ati   

原文地址:http://www.cnblogs.com/D0204/p/7834530.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!