这里是你的通告内容

春生

Be humble, communicate clearly, and respect others.

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页
摘要: 点进来看就完事了铁汁! 点进来看就完事了铁汁! 点进来看就完事了铁汁! 阅读全文
posted @ 2018-06-21 20:08 PythonAV 阅读(118) 评论(0) 推荐(0) 编辑
摘要: PIL简介 什么是PIL PIL:是Python Image Library的缩写,图像处理的模块。主要的类包括Image,ImageFont,ImageDraw,ImageFilter PIL的导入 首先需要安装一下pillow包 pip install pillow 然后就可以调用PIL里的类了 阅读全文
posted @ 2018-06-21 18:49 PythonAV 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 使用连接池的两种方式 第一种方式: 直接从SessionFactory里获取,此时如果需要开启多个进程,那么创建连接池的代码一定要放在循环里面 不然的话每个进程都是用一个session了 from sqlalchemy.orm import sessionmaker from sqlalchemy 阅读全文
posted @ 2018-06-21 18:30 PythonAV 阅读(217) 评论(0) 推荐(0) 编辑
摘要: Git常用命令汇总以及其它相关操作 一、常用的git命令 --文件目录操作命令 1 mkdir * 创建一个空目录 *指目录名 2 pwd 显示当前目录的路径。 3 cat * 查看*文件内容 4 git rm * 删除**文件 --git初始化操作 1 git init 把当前的目录变成git仓库 阅读全文
posted @ 2018-06-20 21:32 PythonAV 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 组员从GitHub上下载项目并上传项目的步骤如下 1.组员接收到组长发的项目地址,组员需要从GitHub上把项目克隆下来,首先组员 需要在本地的一个文件夹里打开git,然后运行如下代码:git clone 项目地址 2.克隆完成后,cd到项目文件里,这时你看到的是你在项目的master分支下; 3. 阅读全文
posted @ 2018-06-20 21:22 PythonAV 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 简介 WTForms是一个支持多个web框架的form组件,主要用于对用户请求数据进行验证。 安装: pip3 install wtforms 用户登录注册示例 1. 用户登录 当用户登录时候,需要对用户提交的用户名和密码进行多种格式校验。如: 用户不能为空;用户长度必须大于6; 密码不能为空;密码 阅读全文
posted @ 2018-06-20 18:30 PythonAV 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 连接 from sqlalchemy.ext.declarative import declarative_base # 要继承这个类 from sqlalchemy import Column # 写字段 条件 from sqlalchemy import Integer,String,Text, 阅读全文
posted @ 2018-06-20 16:22 PythonAV 阅读(1740) 评论(0) 推荐(0) 编辑
摘要: helper.py import pymysql from settings import Config def connect(): conn = Config.POOL.connection() cursor = conn.cursor(cursor=pymysql.cursors.DictCu 阅读全文
posted @ 2018-06-19 20:27 PythonAV 阅读(776) 评论(0) 推荐(0) 编辑
摘要: Title 响应式布局 阅读全文
posted @ 2018-06-19 20:13 PythonAV 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 走视图地址 https://www.hcharts.cn/demo/highcharts 柱状图 <script src="../static/jquery-3.2.1.min.js"></script> <script src="../static/chart/highcharts.js"></s 阅读全文
posted @ 2018-06-19 14:48 PythonAV 阅读(353) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 22 下一页