请教要实现爬取图片这个目的,大体的步骤应该是什么。用什么模块更方便一些?大体的框架应该是什么样
import requests
r = requests.get('图片url')with open('1.jpg','wb') as fp:fp.write(r.content)