fengda 发表于 2017-4-21 11:23:37

python scrawler

__author__ = 'YJatt'
import urllib2
url="http://www.cnblogs.com/way_testlife/archive/2010/06/14/1758276.html"
html=urllib2.urlopen(url,timeout=100).read()
print html
  actually,it's pretty easy to scraw if there's no blocks.
  the most important thing is how to analyze the data we get.
页: [1]
查看完整版本: python scrawler