打赏

星辰大海ゞ

That which does not kill us makes us stronger!

导航

2014年5月10日 #

Python爬虫示例

摘要: 1 #!/usr/bin/python 2 #coding:utf8 3 import re 4 import urllib 5 6 def gethtml(url): 7 page=urllib.urlopen(url) 8 html=page.read() 9 ret... 阅读全文

posted @ 2014-05-10 09:36 星辰大海ゞ 阅读(299) 评论(0) 推荐(0) 编辑