摘要:
前言 安装python3.6.4 https://www.cnblogs.com/sunlong88/articles/9554568.html pip3 install pipenv 用法 在使用pipenv之前,必须彻底的忘记pip这个东西 新建一个准备当环境的文件夹pipenvtest,并cd 阅读全文
摘要:
安装: pip3 install flask-script #!/usr/bin/env python # -*- coding:utf-8 -*- from flask_script import Manager, Server from flask import Flask app = Flask(__name__) manager = Manager(app) @manag... 阅读全文
摘要:
requirements.txt可以通过pip命令自动生成和安装,这种情况更适用于此项目是单独的虚拟python环境生成requirements.txt文件 pip freeze > requirements.txt 安装requirements.txt依赖 pip install -r requi 阅读全文
摘要:
SQLAlchemy 一. 介绍 SQLAlchemy是一个基于Python实现的ORM框架。该框架建立在 DB API之上,使用关系对象映射进行数据库操作,简言之便是:将类和对象转换成SQL,然后使用数据API执行SQL并获取执行结果。 组成部分: Engine,框架的引擎 Connection 阅读全文