TylerYale15
Results
2
comments of
TylerYale15
```python def searchForBook(bookTitle, authorName): s = LibgenSearch() title_filters = {"Author": authorName, "Language": "English"} results = s.search_title_filtered( bookTitle, title_filters, exact_match=False) print(results) return results ``` This is the code I'm trying to...
Thank you for the detailed response! I was also looking into it and had similar findings. I have been working on adapting it to work with the fiction search. I...