1 Star 0 Fork 192

MarineJ / PythonClimbInsect

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jsGetImage.py 2.16 KB
一键复制 编辑 原始数据 按行查看 历史
振长策而御宇内 提交于 2014-01-20 09:11 . js
#-*-coding:utf-8-*-
# 进行表单提交 小项 2008-10-09
import httplib,urllib; #加载模块
#定义需要进行发送的数据
params = urllib.urlencode('')
#定义一些文件头
##headers = {"Accept":"image/png, image/svg+xml, image/*;q=0.8, */*;q=0.5",
## "Referer":"http://www.imanhua.com/comic/76/list_75983.html",
## "Accept-Language":"zh-CN",
## "User-Agent":"Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko",
## "Accept-Encoding":"gzip, deflate",
## "Host":"t6.mangafiles.com",
## "If-Modified-Since":"Wed, 05 Dec 2012 16:00:00 GMT",
## "If-None-Match":"0404b941d3cd1:0",
## "Connection":"Keep-Alive"};
headers = {"Accept":"image/png, image/svg+xml, image/*;q=0.8, */*;q=0.5",
"Referer":"http://www.imanhua.com/comic/76/list_59262.html",
"Accept-Language":"zh-CN",
"User-Agent":"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko",
"Accept-Encoding":"gzip, deflate",
"Host":"t6.mangafiles.com",
"Connection":"Keep-Alive"};
#与网站构建一个连接
conn = httplib.HTTPConnection("www.imanhua.com",80, False);
#开始进行数据提交 同时也可以使用get进行
imgurl = 'http://t6.mangafiles.com/Files/Images/76/75983/001.png'
newurl = imgurl[24:]
conn.request(method="GET",url="/Files/Images/76/59262/imanhua_001.jpg",body=params,headers=headers)
#返回处理后的数据
response = conn.getresponse();
#判断是否提交成功
if response.status == 304:
print "发布成功!^_^!";
else:
print "发布失败\^0^/";
html = response.read()
print response.status,response.reason
print html
with open(u'aa'+'/'+u'001.jpg','wb') as code:
code.write(html)
conn.close();
import urllib2
req = urllib2.Request('http://t6.mangafiles.com/Files/Images/76/75983/001.png')
req.add_header('Referer', 'http://www.imanhua.com/comic/76/list_59262.html')
content = urllib2.urlopen(req).read()
print content
with open(u'aa'+'/'+u'002.jpg','wb') as code:
code.write(content)
Python
1
https://gitee.com/MarineJ/PythonClimbInsect.git
git@gitee.com:MarineJ/PythonClimbInsect.git
MarineJ
PythonClimbInsect
PythonClimbInsect
master

搜索帮助