BeautifulSoup Find within an instagram html page
I have a problem to find something with bs4. I'm trying to automatically find some urls in an html instagram page and (knowing that I'm a python noob) I can't find the way to search automatically within the html source code the urls who are in the exemple after the "display_url": http..." . I want to make my script search multiples url who appears as next as "display_url" and download them. They have to be extracted as many times as they appear in the source code. With bs4 I tried the : f = urllib.request.urlopen(fileURL) htmlSource = f.read() soup = bs(htmlSource, 'html.parser') metaTag =