摘要:
官网: https://requests.kennethreitz.org//zh_CN/latest/user/quickstart.html 测试网站:httpbin.org 注意:其它看官网 1、带headers的请求 2、带cookies的请求 3、带Basic-auth(auth)的请求 阅读全文
摘要:
1、下载 版本是:2.02的 链接:https://pan.baidu.com/s/1YdyTbWElL904EMQ-9Ougnw 提取码:bxxa 2、无效安装的解决方案 参考链接:https://www.cnblogs.com/ljxh/p/11222898.html a、后缀改成rar b、解 阅读全文
摘要:
https://blog.csdn.net/shishu8385/article/details/87787465 阅读全文
摘要:
一、创建ndarrary 1、使用np.arrary()创建 1)、一维数组 import numpy as np np.array([1, 2, 3, 4]) 2)、二维数组 np.array([[1, 2, 3], [3, 8,0], [3, 2, 5]]) 注意: a、创建数组的时候,数据类型 阅读全文
摘要:
向下添加cell b 进入编辑模式 Enter 结束编辑模式 ESC 运行 Ctrl + Enter 查看用法 shit + tab tab两次用法详解 提示 tab 待序 阅读全文
摘要:
一、安装numpy 1、下载 https://pypi.org/project/numpy/#files 2、安装 3、校验 二、安装matplotlib 阅读全文
摘要:
1、安装Ipython 2、安装jupyter 3、运行jupyter 阅读全文
摘要:
1、安装wheel 2、下载lxml库的whl文件 下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml 版本:python 3.7 64位 3、安装lxml 4、检测 阅读全文
摘要:
清华镜像 https://blog.csdn.net/u014061630/article/details/92744781#21_anaconda_5 一、安装 1、安装(参考官网) 官方:https://docs.anaconda.com/anaconda/ 2、校验 从开始菜单查询Anacon 阅读全文
摘要:
核心:共享爬取队列 目的:实现分布式 一、安装 pip3 install -i https://pypi.douban.com/simple scrapy-redis 二、去重 1、配置文件 scrapy 去重 DUPEFILTER_KEY = 'dupefilter:%(timestamp)s' 阅读全文