From 837597d2f52d50bfe28a683a0d33101a1592ce1e Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 1 Aug 2024 01:25:07 +0300 Subject: [PATCH] Feat(get_url): Print headers --- get_url.py | 1 + 1 file changed, 1 insertion(+) diff --git a/get_url.py b/get_url.py index 47b9e44..2372367 100755 --- a/get_url.py +++ b/get_url.py @@ -39,6 +39,7 @@ def run(): print("Moved to: %s" % redirect_to) else: + print(headers) with open(output_fname, 'wb') as outfile: outfile.write(content) -- 2.39.5