随笔分类 -  Python自动化2.0课程16期课件目录

摘要:不吹不擂,你想要的Python面试都在这里了【315+道题】 PEP8 常用规范 Python内置函数进制转换的用法(十进制转二进制、八进制、十六进制) 1 def iptoint(num): 2 h=[] 3 s = num.split(".") 4 for temp in s: 5 a = bi 阅读全文
posted @ 2019-05-13 17:40 李永三 阅读(228) 评论(0) 推荐(0) 编辑
摘要:什么是json: JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - Dece 阅读全文
posted @ 2018-03-03 12:42 李永三 阅读(174) 评论(0) 推荐(0) 编辑
摘要:参考博客: http://www.cnblogs.com/linhaifeng/p/6264636.html 阅读全文
posted @ 2017-12-11 21:31 李永三 阅读(159) 评论(0) 推荐(0) 编辑
摘要:什么是数据结构? 简单来说,数据结构就是设计数据以何种方式组织并存储在计算机中。 比如:列表、集合与字典等都是一种数据结构。 N.Wirth: “程序=数据结构+算法” 列表 列表:在其他编程语言中称为“数组”,是一种基本的数据结构类型。 关于列表的问题: 列表中元素使如何存储的? 列表提供了哪些基 阅读全文
posted @ 2017-11-17 18:23 李永三 阅读(242) 评论(0) 推荐(0) 编辑
摘要:参考博客: http://www.cnblogs.com/alex3714/articles/5474411.html http://www.cnblogs.com/wupeiqi/articles/5480868.html 第一部分 算法简单概念 算法概念 复习:递归 时间复杂度 空间复杂度 什么 阅读全文
posted @ 2017-11-05 19:53 李永三 阅读(328) 评论(0) 推荐(0) 编辑
摘要:s1617day3 内容回顾: Scrapy - 创建project - 创建爬虫 - 编写 - 类 - start_urls = ['http://www.xxx.com'] - def parse(self,response): yield Item对象 yield Request对象 - pi 阅读全文
posted @ 2017-10-30 18:21 李永三 阅读(4275) 评论(0) 推荐(0) 编辑
摘要:s16day37 爬虫2 参考博客:http://www.cnblogs.com/wupeiqi/articles/6229292.html 课堂代码:https://github.com/liyongsan/git_class/tree/master/day37/ 内容回顾: 1. Http协议 阅读全文
posted @ 2017-10-23 10:31 李永三 阅读(389) 评论(0) 推荐(0) 编辑
摘要:爬虫 参考博客:http://www.cnblogs.com/wupeiqi/articles/5354900.html http://www.cnblogs.com/wupeiqi/articles/6283017.html - 基本操作 概要: - 发送Http请求,Python Http请求, 阅读全文
posted @ 2017-10-16 10:23 李永三 阅读(286) 评论(0) 推荐(0) 编辑
摘要:爬虫概要 - pip3 install requests - pip3 install beautifulsoup4 基本爬虫: - cookie csrf 请求头 - cookie csrf 请求头 性能相关: - 线程池 - 进程池 - 异步非阻塞, - (异步=回调,非阻塞=不等待)遇到IO请 阅读全文
posted @ 2017-10-16 09:48 李永三 阅读(171) 评论(0) 推荐(0) 编辑
摘要:参考博客: http://www.cnblogs.com/alex3714/articles/5760582.html 什么是设计模式 Christopher Alexander:“每一个模式描述了一个在我们周围不断重复发生的问题,以及该问题的解决方案的核心。这样你就能一次又一次地使用该方案而不必做 阅读全文
posted @ 2017-09-17 20:18 李永三 阅读(214) 评论(0) 推荐(0) 编辑
摘要:第三部分 实现简单的量化框架 框架内容: 开始时间、结束时间、现金、持仓数据 获取历史数据 交易函数 计算并绘制收益曲线 回测主体框架 计算各项指标 用户待写代码:初始化、每日处理函数 第四部分 在线平台与量化投资 本节内容: 第一个简单的策略(了解平台) 双均线策略 因子选股策略 多因子选股策略 阅读全文
posted @ 2017-09-11 11:45 李永三 阅读(1355) 评论(0) 推荐(0) 编辑
摘要:第一部分:金融与量化投资 股票: 股票是股份公司发给出资人的一种凭证,股票的持有者就是股份公司的股东。 股票的面值与市值 面值表示票面金额 市值表示市场价值 上市/IPO: 企业通过证券交易所公开向社会增发股票以募集资金 股票的作用: 出资证明、证明股东身份、对公司经营发表意见 公司分红、交易获利 阅读全文
posted @ 2017-09-04 11:15 李永三 阅读(2506) 评论(0) 推荐(0) 编辑
摘要:堡垒机尾声: 代码案例:https://github.com/liyongsan/git_class/tree/master/day31 课堂笔记:file send: 1.选择本地文件 2.远程路径 file recv: 1.远程路径 2./usr/local/luffyeye postTask 阅读全文
posted @ 2017-08-28 10:18 李永三 阅读(416) 评论(0) 推荐(0) 编辑
摘要:课堂代码:https://github.com/liyongsan/git_class/tree/master/day30 阅读全文
posted @ 2017-08-21 10:03 李永三 阅读(247) 评论(0) 推荐(0) 编辑
摘要:day29课堂代码:https://github.com/liyongsan/git_class/tree/master/day29 课堂笔记: 通过原生Ssh 记录会话1. 在我们自己的堡垒机交互脚本里,嵌入原生ssh 2. 每启动一次Ssh 回话,就自动启动strace监测指令,监测会话记录 1 阅读全文
posted @ 2017-08-14 10:02 李永三 阅读(342) 评论(0) 推荐(0) 编辑
摘要:1,CRM项目实战-万能权限组件开发参考博客:http://www.cnblogs.com/alex3714/articles/6661911.html 参考代码:https://github.com/liyongsan/git_class/tree/master/day28/LuffyCRM 2. 阅读全文
posted @ 2017-08-07 10:57 李永三 阅读(245) 评论(0) 推荐(0) 编辑
摘要:代码路径:https://github.com/liyongsan/git_class/tree/master/day27/LuffyCRM 权限预习:http://www.cnblogs.com/alex3714/articles/6661911.html 阅读全文
posted @ 2017-07-31 14:07 李永三 阅读(203) 评论(0) 推荐(0) 编辑
摘要:代码: https://github.com/liyongsan/git_class/tree/master/day25/LuffyCRM 阅读全文
posted @ 2017-07-17 11:53 李永三 阅读(201) 评论(0) 推荐(0) 编辑
摘要:博客: Restful: http://www.cnblogs.com/alex3714/articles/6808013.html http://www.cnblogs.com/alex3714/articles/7131523.html crm: http://www.cnblogs.com/a 阅读全文
posted @ 2017-07-11 11:02 李永三 阅读(173) 评论(0) 推荐(0) 编辑
摘要:课前准备: https://www.getpostman.com/postman 内容: 1. cmdb资产自动更新2. api安全认证3. restfulAPI 4. 自定义用户认证 课堂笔记: 前端展示:MadKing-master安装rest_framework:pip3 install -i 阅读全文
posted @ 2017-07-03 16:56 李永三 阅读(273) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示