摘要: 1、requests方式 (1) 无头部信息 import requests url = "/dearvee/p/6558571.html" response = requests.get(url) response.encoding = 'utf-8' 阅读全文
posted @ 2021-11-13 23:17 叶森白 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1. 爬取页面数据 $url = "http://www.zongscan.com/demo333/178.html"; $request = new GuzzleRequest('GET', $url); $client = new \GuzzleHttp\Client(); $response 阅读全文
posted @ 2021-11-13 22:55 叶森白 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 1. 软件安装与卸载 (1) 二进制安装:直接解压使用 (2) rpm安装 安装:rpm -ivh xxx.rpm 卸载:rpm -evh xxx (3) yum安装 安装:yum install xxx 卸载:yum remove xxx (4) dpkg安装 安装:dpkg -i xxx.deb 阅读全文
posted @ 2021-11-13 22:05 叶森白 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1. 提交代码到远程仓库 (1) 在项目中生成本地的git管理 git init (2) 将文件保存至缓存区 git add . (3) 将代码从缓存区保存至本地仓库 git commit -m "首次提交” (4) 将本地仓库与指定的远程仓库创建联系 git remote add origin h 阅读全文
posted @ 2021-11-13 21:53 叶森白 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 1. 博客皮肤(SimplyMemory) css代码(禁用默认CSS) /* 皮肤 */ *,.Cal{padding:0}::-moz-selection{background:#807dd4;color:#FFF}::selection{background:#807dd4;color:#FF 阅读全文
posted @ 2021-11-13 16:17 叶森白 阅读(36) 评论(0) 推荐(0) 编辑