
python
python
流浪2046
这个作者很懒,什么都没留下…
展开
-
requests库将cookieJar对象转换为cookies字典
requests库将cookieJar对象转换为cookies字典转字典转cookieJar使用requests获取的resposne对象,具有cookies属性。该属性值是一个cookieJar类型。转字典cookies_dict = requests.utils.dict_from_cookiejar(res.cookies) # # 使用utils.dict_from_cookiejar 将cookies数据类型转化为字典转cookieJarrequests.utils.cookieja原创 2022-01-01 21:21:09 · 998 阅读 · 0 评论 -
pip 清华镜像
pip 清华镜像一、地址二、使用一、地址https://pypi.tuna.tsinghua.edu.cn/simple二、使用原创 2021-12-16 14:13:19 · 1731 阅读 · 0 评论 -
Can‘t connect to HTTPS URL because the SSL module is not available
问题:centos上,python无法发送https请求。安装 openssl-1.0.2r[root@localhost ~]# wget http://www.openssl.org/source/openssl-1.0.2r.tar.gz[root@localhost ~]# tar zxvf openssl-1.0.2r.tar.gz[root@localhost ~]# ./config --prefix=/opt/openssl1.0.2r --openssldir=/opt/opens原创 2020-11-08 23:41:13 · 344 阅读 · 0 评论 -
virtualenv 创建虚拟环境
1)安装虚拟环境pip3 install virtualenv -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com2)升级pip(3)python -m pip install --upgrade pip查看版本pip3 -V4)安装虚拟环境管理包pip3 install virtualenvwrapper-win -i http://pypi.douban.com/simple --trusted-host=原创 2020-09-14 09:40:15 · 309 阅读 · 0 评论 -
centos6.4 安装 python3.7
1, 准备工作,安装依赖:命令:yum install gcc patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel -y2,下载软件源代码,安装到 /opt 下:国内镜像地址,下载好后,使用工具上传到linux 。方法二:原创 2020-09-04 23:38:15 · 449 阅读 · 0 评论