连接mysql数据库,创建用户模型
- 安装与配置python3.6+flask+mysql数据库
- 下载安装MySQL数据库
- 下载安装MySQL-python 中间件
- pip install flask-sqlalchemy (Python的ORM框架SQLAlchemy)
- mysql创建数据库
- 数据库配置信息config.py
- 建立mysql和app的连接
- 创建用户模型
主py中:
-
from flask import Flask from flask import render_template from flask_sqlalchemy import SQLAlchemy import config app = Flask(__name__) app.config.from_object(config) db=SQLAlchemy(app) 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) nickname=db.Column(db.String(50)) db.create_all()#测试,运行没有提示错误就Ok @app.route('/') def base(): return render_template('base.html') @app.route('/login/') def login(): return render_template('login.html') @app.route('/register/') def register(): return render_template('register.html') @app.route('/question/') def question(): return render_template('question.html') @app.route('/shouye/') def shouye(): return render_template('shouye.html') if __name__ == '__main__': app.run(debug=True)
config.py:
SQLALCHEMY_DATABASE_URI='mysql+pymysql://root:@127.0.0.1:3306/mis_db?charset=utf8' SQLALCHEMY_TRACK_MODIFICATIONS=False
![]()

浙公网安备 33010602011771号