9 lines
182 B
Python
9 lines
182 B
Python
from src.bibapi.kvkparser import KVKParser
|
|
|
|
req = await KVKParser()
|
|
await req.start()
|
|
|
|
|
|
result = await req.search(title="Java ist auch eine Insel", author="Ullenboom")
|
|
print(result)
|