Pytube 正则表达式匹配错误
Pytube RegexMatchError
我正在尝试在 python 中编写脚本,提示用户在命令行上输入 youtube link。然后应该下载这个 link
from pytube import YouTube
downloadFile = raw_input("Enter your Youtube link: ")
YouTube(downloadFile).streams.first().download()
然而,当在命令行中输入 link 时,我得到以下信息:
File "dl.py", line 10, in <module>
YouTube(downloadFile).streams.first().download()
File "build/bdist.linux-x86_64/egg/pytube/__main__.py", line 69, in __init__
File "build/bdist.linux-x86_64/egg/pytube/extract.py", line 43, in video_id
File "build/bdist.linux-x86_64/egg/pytube/helpers.py", line 39, in regex_search
pytube.exceptions.RegexMatchError: regex pattern ((?:v=|\/)([0-9A-Za-z_-]{11}).*) had zero matches
我可以通过 python interpeter 让它工作。
欢迎提出任何建议!
好的,经过一番扎根之后似乎可以解决问题
import sys # import sys
import pytube
link = raw_input('Please enter a url link\n')
yt = pytube.YouTube(link)
stream = yt.streams.first()
finished = stream.download()
print 'Download is complete'
sys.exit()
我正在尝试在 python 中编写脚本,提示用户在命令行上输入 youtube link。然后应该下载这个 link
from pytube import YouTube
downloadFile = raw_input("Enter your Youtube link: ")
YouTube(downloadFile).streams.first().download()
然而,当在命令行中输入 link 时,我得到以下信息:
File "dl.py", line 10, in <module>
YouTube(downloadFile).streams.first().download()
File "build/bdist.linux-x86_64/egg/pytube/__main__.py", line 69, in __init__
File "build/bdist.linux-x86_64/egg/pytube/extract.py", line 43, in video_id
File "build/bdist.linux-x86_64/egg/pytube/helpers.py", line 39, in regex_search
pytube.exceptions.RegexMatchError: regex pattern ((?:v=|\/)([0-9A-Za-z_-]{11}).*) had zero matches
我可以通过 python interpeter 让它工作。
欢迎提出任何建议!
好的,经过一番扎根之后似乎可以解决问题
import sys # import sys
import pytube
link = raw_input('Please enter a url link\n')
yt = pytube.YouTube(link)
stream = yt.streams.first()
finished = stream.download()
print 'Download is complete'
sys.exit()