clash 打开 Allow Lan\Tun Mode\System Proxy

在 vscode 设置中设置`http:Proxy:http://127.0.0.1:7890`

``` python
# !/usr/bin/python3
# encoding=utf-8

from pytube import YouTube
from pytube.exceptions import VideoUnavailable

video = YouTube("https://www.youtube.com/watch?v=tO_L8bik10k")

print("Video_title = " + video.title)

try:
    print(video.streams)
    print(video.title)
except VideoUnavailable:
    print("视频不可用")
except Exception as e:
    print(f"发生错误: {e}")

```

为什么 title 可以打印出来,但是 streams 无法打印,并且返回`发生错误: HTTP Error 400: Bad Request`

试了一下在 vscode 终端 `ping youtube.com` 连接超时
举报· 48 次点击
登录 注册 站外分享
4 条回复  
xinhaih 小成 2024-7-22 15:47:49
能返回 title 和 http error 就说明已经走代理了,streams 无法打印应该有其他的问题。另外 ping 使用 icmp 协议不走 http 代理。
ZekeRuan 小成 2024-7-22 16:49:23
我觉得是没有走代理,clash 无法代理系统层面,用软路由应该可以解决,而且谷歌系网站都不接受 icmp
fgt1t5y 小成 2024-7-22 16:53:59
用 clash 的 tun 模式试试
Vegetable 小成 2024-7-22 16:55:00
哥们儿们写代码甚至不愿意看一眼文档吗
返回顶部