gpt4 book ai didi

python - 如何使用 python 在我的 youtube 历史记录中获取最后观看的视频?

转载 作者:行者123 更新时间:2023-12-03 06:07:12 25 4
gpt4 key购买 nike

我想制作一个 python 脚本来获取我在我的帐户上观看的最后一个视频的链接

从我发现人们说 YouTube API3 停止使用观看历史播放列表,所以我一直试图让 beutifulsoup 抓取观看历史,它只抓取 youtube.com 而不是 youtube.com/feed/history我运行我的脚本。

import requests
from bs4 import BeautifulSoup

with requests.Session() as s:

p = s.post("https://www.youtube.com/feed/history", data={
"email": 'username',
"password": "pass"
})
print(p.text)

base_page = s.get('https://www.youtube.com/feed/history')
soup = BeautifulSoup(base_page.content, 'html.parser')
print(soup.title)

最佳答案

去看看https://developers.google.com/youtube/1.0/developers_guide_python
这会告诉您有关通过 python 访问 youtube 的所有信息

关于python - 如何使用 python 在我的 youtube 历史记录中获取最后观看的视频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62268984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com