1 Star 0 Fork 187

TeFuir/Python爬虫

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
模拟Post请求 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
耿直的小爬虫 提交于 2018-07-16 17:29 . 新建 模拟Post请求
import urllib.request as r
import urllib.parse as p
url='http://www.iqianyue.com/mypost'
#name 和 pass可自信更改
postdata=p.urlencode({
'name':'cht',
'pass':'123456'
}).encode('utf-8')
print('postdata参数是:',postdata)
req=r.Request(url,postdata)
req.add_header('User-Agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 SE 2.X MetaSr 1.0')
data=r.urlopen(req).read()
with open('1.html','wb')as f:
f.write(data)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tangyulun/python_reptilian.git
git@gitee.com:tangyulun/python_reptilian.git
tangyulun
python_reptilian
Python爬虫
master

搜索帮助