Files
youtube-comment-scraper/youtube_comment_scraper/test_find_multiple_users.py
2022-11-07 21:46:38 +02:00

11 lines
399 B
Python

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)