Create test_find_multiple_users.py

This commit is contained in:
Richard Mwewa
2022-11-07 21:46:38 +02:00
committed by GitHub
parent a2f20d150e
commit 109476ae9c

View File

@@ -0,0 +1,10 @@
from youtube_comment_scraper.scraper import YouTubeCommentScraper
def test_find_multiple_users():
# List contains, videos from Google's YouTube channel
vids = [
'https://www.youtube.com/watch?v=8qGV_O_y4DA',
'https://www.youtube.com/watch?v=WSkETCRe7Ic',
'https://www.youtube.com/watch?v=cdgQpa1pUUE'
]
YouTubeCommentScraper().find_multiple_users(vids)