질문 : 요청을 사용하여 이미지를 다운로드하는 방법 requests 모듈을 사용하여 웹에서 이미지를 다운로드하고 저장하려고합니다. 내가 사용한 (작동하는) 코드는 다음과 같습니다. img = urllib2.urlopen(settings.STATICMAP_URL.format(**data)) with open(path, 'w') as f: f.write(img.read()) requests 사용하는 새로운 (작동하지 않는) 코드입니다. r = requests.get(settings.STATICMAP_URL.format(**data)) if r.status_code == 200: img = r.raw.read() with open(path, 'w') as f: f.write(img) requests 에서 사용..