08 2018 档案

摘要:lxml库,处理xml很强大,官方文档:https://lxml.de/tutorial.html#namespaces 例如: 我们要生成如下格式的报文: 就可以参考如下的样例代码实现: 阅读全文
posted @ 2018-08-31 13:37 hello-Jesson 阅读(2232) 评论(0) 推荐(0) 编辑
摘要:Navicat 数据库连接软件中文手册 : https://www.navicat.com.cn/manual/online_manual/cn/navicat/linux_manual/#/installation Django REST framework: https://q1mi.githu 阅读全文
posted @ 2018-08-27 11:10 hello-Jesson 阅读(199) 评论(0) 推荐(0) 编辑
摘要:http://p.primeton.com/topics/58db56164be8e64ad1001b22/articles https://www.simapple.com 阅读全文
posted @ 2018-08-21 11:13 hello-Jesson 阅读(202) 评论(0) 推荐(0) 编辑
摘要:工具不错 https://blog.csdn.net/skykingf/article/details/71539237 阅读全文
posted @ 2018-08-16 17:37 hello-Jesson 阅读(1326) 评论(0) 推荐(0) 编辑
摘要:查看当前目录下的文件数量: ls -l |grep "^-"|wc -l 或 find ./folder_name -type f | wc -l 注:folder_name 指的是:当前目录下的你要查询的文件夹名 查看某文件夹下文件的个数,包括子文件夹里的。 ls -lR|grep "^-"|wc 阅读全文
posted @ 2018-08-10 18:25 hello-Jesson 阅读(45056) 评论(0) 推荐(1) 编辑