pytube / tests /contrib /test_playlist.py
hbmartin's picture
black formatting for tests
82321d6
raw
history blame
290 Bytes
# -*- coding: utf-8 -*-
from pytube import Playlist
def test_title():
list_key = "PLsyeobzWxl7poL9JTVyndKe62ieoN-MZ3"
url = "https://www.youtube.com/playlist?list=" + list_key
pl = Playlist(url)
pl_title = pl.title()
assert pl_title == "Python Tutorial for Beginners"