Scraping images II doubt :not able to iterate over the images

In the lecture images were in the article tag of the webpage but now they are inb the section tag.
i am getting the first image but i am not ablle to iterate over the images.this is my code:
section_element=soup.findAll(“section”)
section=section_element[2]
with open(“inspire.jpg”,“wb”) as f:
img_url=section.img.attrs[‘src’]
response=requests.get(img_url)
f.write(response.content)
this code is working fine and i am getting the first image.
r i,section in enumerate(section_element):
with open(“inspire{}.jpg”.format(i),“wb”) as f:
img_url=section.img.attrs[‘src’]
response=requests.get(img_url)
f.write(response.content)
This code is generating error:MissingSchema Traceback (most recent call last)
in
2 with open(“inspire{}.jpg”.format(i),“wb”) as f:
3 img_url=section.img.attrs[‘src’]
----> 4 response=requests.get(img_url)
5 f.write(response.content)

~\Anaconda3\lib\site-packages\requests\api.py in get(url, params, **kwargs)
73
74 kwargs.setdefault(‘allow_redirects’, True)
—> 75 return request(‘get’, url, params=params, **kwargs)
76
77

~\Anaconda3\lib\site-packages\requests\api.py in request(method, url, **kwargs)
58 # cases, and look like a memory leak in others.
59 with sessions.Session() as session:
—> 60 return session.request(method=method, url=url, **kwargs)
61
62

~\Anaconda3\lib\site-packages\requests\sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
517 hooks=hooks,
518 )
–> 519 prep = self.prepare_request(req)
520
521 proxies = proxies or {}

~\Anaconda3\lib\site-packages\requests\sessions.py in prepare_request(self, request)
460 auth=merge_setting(auth, self.auth),
461 cookies=merged_cookies,
–> 462 hooks=merge_hooks(request.hooks, self.hooks),
463 )
464 return p

~\Anaconda3\lib\site-packages\requests\models.py in prepare(self, method, url, headers, files, data, params, auth, cookies, hooks, json)
311
312 self.prepare_method(method)
–> 313 self.prepare_url(url, params)
314 self.prepare_headers(headers)
315 self.prepare_cookies(cookies)

~\Anaconda3\lib\site-packages\requests\models.py in prepare_url(self, url, params)
385 error = error.format(to_native_string(url, ‘utf8’))
386
–> 387 raise MissingSchema(error)
388
389 if not host:

MissingSchema: Invalid URL ‘/assets/pofo/instagram_glyph-3a42844bdfa0b6e1ff03e4baf2b978d1.png’: No schema supplied. Perhaps you meant http:///assets/pofo/instagram_glyph-3a42844bdfa0b6e1ff03e4baf2b978d1.png?