본문 바로가기
파이썬

유튜브 정보가져오기 - 파이썬, pafy

by zgabriel 2024. 7. 3.
728x90

pafy는 유튜브 정보를 손쉽게 가져올수 있도록 만든 라이브러리이다.

. https://pythonhosted.org/pafy/

윈도우 + 파이참 환경에서 테스트 했는데 pafy를 설치하니 youtube-dl이

필요하다는 메세지가 나와 패키지를 검색하니 web-youtube-dl 이 나와 이를

설치했다.

아래는 유튜브 정보를 확인할 수 있는 간단한 소스이다.

import pafy

info = pafy.new("https://www.youtube.com/watch?v=P8lxQ-1oM1I")

print('TITLE : %s' % info.title)

print('Author : %s' % info.author)

print('ID : %s' % info.videoid)

print('Duration : %s' % info.duration)

print('RATING : %s' % info.rating)

print('VIEWCOUNT : %s' % info.viewcount)

print('thumb : %s' % info.thumb)

print('likes : %s' % info.likes) 

 

 

반응형