python爬虫入门

import re
import requests
def fun(first):
    #http://www.mmonly.cc/gqbz/list_41_345.html
    url = "http://www.mmonly.cc/gqbz/list_41_"+first+".html"#10-70 1-7
    res = requests.get(url=url)
    html=res.text
    with open("zhenze.txt", "rt", encoding="utf-8") as in_file:
        zhenze = in_file.read()
    pic_url = re.findall(zhenze,html,re.S)
    print(pic_url)
    for i in range (1,len(pic_url)-1):
        picture=requests.get(pic_url[i])
        with open(first+"_"+str(i) +".jpg", "wb")as  f:
            f.write(picture.content)

def getfun():

    for i in range(10,300):
        fun(str(i))

if __name__ == "__main__":
    getfun()

下面是zhenze.txt的内容 

运行,爬虫完毕,继续学习~

python爬虫入门_第1张图片

你可能感兴趣的:(python,爬虫)