18 lines
277 B
Python
18 lines
277 B
Python
#!/bin/python3
|
|
|
|
from Scrapper import Khinsider
|
|
|
|
x = Khinsider()
|
|
|
|
search_list = [
|
|
"Pokemon",
|
|
"Digimon",
|
|
"Halo"
|
|
]
|
|
|
|
x.generate_index()
|
|
for word in search_list:
|
|
for i in x.find_entry(keyword=word):
|
|
print(i.name)
|
|
x.download_album(i, f"./tmp/{word}")
|