diff --git a/handyhelper/__init__.py b/handyhelper/__init__.py index c0ea490..5800279 100644 --- a/handyhelper/__init__.py +++ b/handyhelper/__init__.py @@ -30,6 +30,7 @@ async def search(txt): } async def getPDF(url): + print(f"Fetching PDF: {url}") resp = req.get(url, stream=True) pdf = io.BytesIO(resp.content) pages = pdftotext.PDF(pdf)