10

Error message/code

This code used to work 4 days back now it is showing error. I tried using pytube3 but that does not help.

from pytube import YouTube** 
YouTube('https://www.youtube.com/watch?v=JbBsqmKclXE').streams**

HTTPError Traceback (most recent call last) in ()
----> 1 YouTube('https://www.youtube.com/watch?v=JbBsqmKclXE').streams

14 frames
/usr/lib/python3.7/urllib/request.py in http_error_default(self, req, fp, code, msg, hdrs)

647 class HTTPDefaultErrorHandler(BaseHandler):
648     def http_error_default(self, req, fp, code, msg, hdrs):

--> 649 raise HTTPError(req.full_url, code, msg, hdrs, fp) 650 651 class HTTPRedirectHandler(BaseHandler):

HTTPError: HTTP Error 404: Not Found

Linda Lawton - DaImTo
  • 106,405
  • 32
  • 180
  • 449
shadow5893
  • 337
  • 4
  • 10

1 Answers1

8

This issue has been fixed by Ssuwani. You can install Pytube from

pip install git+https://github.com/ssuwani/pytube 
Mustafa Aydın
  • 17,645
  • 4
  • 15
  • 38
shadow5893
  • 337
  • 4
  • 10