Created scraper.py and test_find_multiple_authors.py

This commit is contained in:
Richard Mwewa
2022-09-30 21:36:06 +02:00
parent f9ae8cd851
commit 1b6376ff00
2 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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)