mirror of
https://github.com/bellingcat/youtube-comment-scraper.git
synced 2026-06-08 03:28:32 +03:00
10 lines
352 B
Python
10 lines
352 B
Python
from scraper import find_multiple_authors
|
|
|
|
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'
|
|
]
|
|
find_multiple_authors(vids) |