Get images link product

Hello

I'm a beginner and I'm looking to grab the link of the product images.

Can you help me ? Here is my script.

import requests
from bs4 import BeautifulSoup as bs
  
page = requests.get("https://www.boulanger.com/ref/1176193")

if page.status_code == 200:
    parsedPage = bs(page.content, 'lxml')
    div_product = parsedPage.find('article',{'class':'container-xl'})
    title = div_product.find('h1',{'class':'product-title__main'}).get_text()
    title = '\n'.join([ligne.strip() for ligne in title.split('\n') if ligne.strip() != '']).replace('\n', ' ')
    ref = div_product.find('div',{'class':'product-title__ref'}).get_text()   
    short_desc = div_product.find('section',{'class':'keypoints'})
    long_desc = div_product.find('div',{'class':'product-features__content'})
    data = {
        'titre': title,
        'ref': ref,
        'foto': img_link
        }

Thank you
Herve