python 从instagram链接中提取视频或图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 从instagram链接中提取视频或图像相关的知识,希望对你有一定的参考价值。

from bs4 import BeautifulSoup
import requests
import os
import time

url = input("Enter valid url: ")

html = requests.get(url)
if html:
	print("The url is Ok")
	soup = BeautifulSoup(html.text,"html.parser")
	result = ""
	for meta in soup.find_all("meta"):
		if meta.get("property") == "og:image":
			result = meta.get("content")
		if meta.get("property") == "og:video":
			result = meta.get("content")

	if result: 
		print("OK, open chrome with link")
		print("Use right mouse and save as..")
		time.sleep(1)
		os.system("start chrome {}".format(result))

以上是关于python 从instagram链接中提取视频或图像的主要内容,如果未能解决你的问题,请参考以下文章

如何直接从复制或分享 URL 中获取 Instagram 图片或视频 URL?

Python - 从 Instagram 视频中抓取视图计数,加载到 JSON 格式

从 API 检索 Instagram 视频嵌入 URL

如何从 Python 中的 YouTube 链接中提取视频 ID?

使用 Python 从 .swf 中提取视频

python 追随者提取Instagram