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

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

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

标签:column   color   username   key   nullable   use   name   创建   ble   

 

  1. 安装与配置python3.6+flask+mysql数据库
    1. 下载安装MySQL数据库
    2. 下载安装MySQL-python 中间件
    3. pip install flask-sqlalchemy (Python的ORM框架SQLAlchemy)
  2. mysql创建数据库
  3. 数据库配置信息config.py
  4. 建立mysql和app的连接
  5. 创建用户模型
 1 from flask import Flask, render_template
 2 from flask_sqlalchemy import SQLAlchemy
 3 import config
 4 
 5 app = Flask(__name__)
 6 app.config.from_object(config)
 7 db=SQLAlchemy(app)
 8 
 9 class User(db.Model):
10     __tablename__=user
11     id = db.Column(db.Integer,primary_key=True,autoincrement=True)
12     username=db.Column(db.String(20),nullable=False)
13     password=db.Column(db.String(20),nullable=False)
14 
15 db.create_all()
16 
17 @app.route(/)
18 def index():
19     return render_template(index.html)
20 
21 @app.route(/login/)
22 def login():
23     return render_template(login.html)
24 
25 @app.route(/regist/)
26 def register():
27     return render_template(regist.html)
28 
29 @app.route(/base/)
30 def base():
31     return render_template(base.html)
32 
33 @app.route(/question/)
34 def question():
35     return render_template(question.html)
36 
37 if __name__ == __main__:
38     app.run()

 

congfig.py

SQLALCHEMY_DATABASE_URI=mysql+pymysql://root:123456@127.0.0.1:3306/ni_db?charset=utf8
SQLALCHEMY_TRACK_MODIFICATTONS = False

 

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

标签:column   color   username   key   nullable   use   name   创建   ble   

原文地址:http://www.cnblogs.com/nigongbin/p/7834514.html

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