From a024de9165ff2d975961f2f8df1100ae50413ae6 Mon Sep 17 00:00:00 2001 From: "DavidCrompton1192@gmail.com" Date: Fri, 17 Mar 2023 23:16:56 -0400 Subject: [PATCH] Debug URL Print Statement --- handyhelper/__init__.py | 1 + 1 file changed, 1 insertion(+) 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)