copia el codigo de la paguina web de instagram
def web(url): url = "https://www.instagram.com/p/cZ2W8uK7s0/?utm_source=ig_web_copy_link" response = urllib.request.urlopen(url) data = response.read() text = data.decode("utf-8") return text web("https://www.instagram.com/p/cZ2W8uK7s0/?utm_source=ig_web_copy_link")