爬虫python和正则

  1. 爬虫基本


    爬虫python和正则_第1张图片
    python包
爬虫python和正则_第2张图片
image.png

打开网页

import urllib.request

#req=urllib.request.Request('http://placekitten.com/g/500/600')
#response = urllib.request.urlopen(req)
response = urllib.request.urlopen('http://placekitten.com/g/500/600')
cat_img = response.read().decode('utf-8')

with open('cat_500_600.jpg','wb') as f:
    f.write(cat_img)

爬虫python和正则_第3张图片
修改header
爬虫python和正则_第4张图片
代理
  1. 正则表达式
re.search(r'FishC','I love FishC.com!')
爬虫python和正则_第5张图片
search方法

image.png

你可能感兴趣的:(爬虫python和正则)