摘要: 安装phantomjs下载地址:http://phantomjs.org/download.html下载后解压缩,启动phantomjsE:\phantomjs-2.1.1-windows\bin执行phantomjs.exe 阅读全文
posted @ 2018-12-20 17:17 yangly 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 1、新建文件config.json,内容如下,文件放在pyspider文件夹下,路径为C:\Windows\System32\cmd.exe 2、安装redis,在redis文件夹下启动终端,运行命令启动redis服务端E:\redis>redis-server.exe redis.windows. 阅读全文
posted @ 2018-12-20 11:02 yangly 阅读(1403) 评论(0) 推荐(0) 编辑
摘要: #列表表示树 def BinaryTree(r): return [r, [], []] def insertLeft(root,newBranch): t = root.pop(1) if len(t) > 1: root.insert(1,[newBranch,t,[]]) else: root.insert(1,[new... 阅读全文
posted @ 2018-12-20 10:22 yangly 阅读(870) 评论(0) 推荐(0) 编辑