📜  youtube dl python 代码示例

📅  最后修改于: 2022-03-11 14:46:10.102000             🧑  作者: Mango

代码示例1
import os
import sys

os.system("pip install youtube_dl")

try:
  import youtube_dl as ytdl
except:
  pass


if not ytdl:
  print("Cant find the install of Youtube dl")
  sys.exit(0)