강의

멘토링

커뮤니티

Inflearn Community Q&A

choiducky6028's profile image
choiducky6028

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

[ Quick Tip! ] Automate downloading YouTube videos and converting to MP3 using Python!

pytube 에러 해결 방법 공유드립니다.

Resolved

Written on

·

548

2

pip uninstall pytube
pip install git+git://github.com/nficano/pytube

pip show pytube3로 디렉터로 경로를 확인합니다.
경로로 이동 후 pytube 폴더 -> extract.py파일 엽니다.
해당 내용 중 아래와 같이 수정하시면 해결됩니다.

변경 전
parse_qs(formats[i]["cipher"]) for i, data in enumerate(formats) 

변경후
parse_qs(formats[i]["signatureCipher"]) for i, data in enumerate(formats)

웹-크롤링python

Answer 3

1

이렇게 수정하니 되네요. 감사합니다.

1

오오오오 감사합니다.

1

niceman님의 프로필 이미지
niceman
Instructor

오오 감사합니다.

공유하겠습니다.

choiducky6028's profile image
choiducky6028

asked

Ask a question