wangxing
随笔 - 1, 文章 - 0, 评论 - 1, 引用 - 0
数据加载中……
2011年8月9日
python从实际网页得到HTML的两种方法
1
import
urllib
2
3
def
downloadhtml1():
4
sock
=
urllib.urlopen(
"
http://www.baidu.com
"
)
5
htmlContent
=
sock.read()
6
sock.close()
7
dirInfo
=
open(
'
D:\\baidu1.html
'
,
'
a
'
)
8
dirInfo.write(htmlContent)
9
dirInfo.close()
10
11
def
cbk(a, b, c):
12
per
=
100.0
*
a
*
b
/
c
13
if
per
>
100
:
14
per
=
100
15
print
'
%.2f%%
'
%
per
16
17
def
downloadhtml2():
18
url
=
'
http://www.baidu.com
'
19
local
=
'
d:\\baidu2.html
'
20
urllib.urlretrieve(url,local,cbk)
21
22
if
__name__
==
'
__main__
'
:
23
downloadhtml1()
24
downloadhtml2()
posted @
2011-08-09 09:09
一寒 阅读(95) |
评论 (1)
|
编辑
收藏
仅列出标题
Powered by:
BlogJava
Copyright © 一寒
导航
BlogJava
首页
新随笔
联系
聚合
管理
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
2011年8月 (1)
搜索
最新评论
1. re: python从实际网页得到HTML的两种方法
python没学过,想用JAVA读取网页的HTML
--淘宝女装