上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: 1 快排: data = [2, 5, 1, 6, 3, 9, 7] def quick_sort(data, left, right): if left < right: # 1 确定中间数的位置, 求出中间数的索引 mid = partition(data, left, right) print 阅读全文
posted @ 2018-12-18 21:41 ...绿茵 阅读(606) 评论(1) 推荐(0) 编辑
摘要: 主要内容: dragonfire 1 flask的cbv写法: 2 flash : Flask中闪现是基于session来实现的,而session存在于服务器端的一个字典里,把session保存起来,取一次值,里面还是有数据,直到你完全删除后才没有值了 a : flash中存数据 flash('字符 阅读全文
posted @ 2018-12-18 19:35 ...绿茵 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 主要内容: 1 flask路由: a : endpoing的讲解:https://www.cnblogs.com/mikellxy1990/p/8439228.html b: endpoint:默认是视图函数名, 当请求到来的时候, 会先通过rule找到endpoint, 然后再根据endpoint 阅读全文
posted @ 2018-12-17 18:02 ...绿茵 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 主要内容:https://www.cnblogs.com/DragonFire/p/9259999.html 1 django, flask, tornado框架的总结 a : django web 优点:大而全,ORM models ,model Form ,admin ,csrf ,sessio 阅读全文
posted @ 2018-12-17 13:49 ...绿茵 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 主要内容: https://www.cnblogs.com/jingxiaoniu/p/6783063.html 阅读全文
posted @ 2018-12-14 16:38 ...绿茵 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 主要内容:https://blog.csdn.net/qingkongyeyue/article/details/54925741 阅读全文
posted @ 2018-12-14 16:34 ...绿茵 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 主要内容: https://www.cnblogs.com/pyyu/p/9276851.html ubuntu的安装: 安装ubuntu详细博客https://www.cnblogs.com/pyyu/p/9900100.html1.通过vmware安装ubuntu系统2.安装完成后,登录ubun 阅读全文
posted @ 2018-12-13 21:35 ...绿茵 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 主要内容: 1 哨兵集群:https://blog.csdn.net/yaooch/article/details/80167571 a 哨兵的介绍:Sentinel(哨兵)是Redis的高可用性解决方案:由一个或多个Sentinel实例组成的Sentinel系统可以监视任意多个主服务器,以及这些主 阅读全文
posted @ 2018-12-11 13:28 ...绿茵 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 主要内容:https://www.cnblogs.com/pyyu/p/9481344.html?tdsourcetag=s_pcqq_aiomsg 1 使用linux运行django项目 a : 准备python环境, 准备虚拟环境, 激活虚拟环境: mkvirtualenv nbcrm b : 阅读全文
posted @ 2018-12-10 20:01 ...绿茵 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 主要内容:https://www.cnblogs.com/pyyu/p/9468680.html 1 正向代理和反向代理 https://blog.csdn.net/zt15732625878/article/category/6915912 a : 正向代理: 正向代理(forward proxy 阅读全文
posted @ 2018-12-10 19:23 ...绿茵 阅读(218) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
1