15 lines
243 B
Python
15 lines
243 B
Python
from Scrapper import Khinsider
|
|
|
|
x = Khinsider()
|
|
|
|
search_list = [
|
|
"Pokemon",
|
|
"Digimon",
|
|
]
|
|
|
|
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")
|