python requests库
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python requests库相关的知识,希望对你有一定的参考价值。
#-*- coding:utf-8 -*-
import requests #导入模块
html = requests.get(url).text #get请求
html = requests.post(url,data = postdata).text # post表单请求
设置socket 代理
proxies = { ‘http‘:‘sock5://127.0.0.1:8080‘, ‘http‘:‘sock5://127.0.0.1:7070‘ } # 添加代理ip 作为参数传入
response = requests.get("https://www.taobao.com",proxies=proxies)
print(response.status_code) #打印网页返回状态
以上是关于python requests库的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段