From f8f41070adfd4dc4856d96f618ee96fe8c411458 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 26 Apr 2022 15:16:45 -0700 Subject: make fmt --- python/sandcrawler/html.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'python/sandcrawler') diff --git a/python/sandcrawler/html.py b/python/sandcrawler/html.py index 6e5d2d6..f73b579 100644 --- a/python/sandcrawler/html.py +++ b/python/sandcrawler/html.py @@ -346,10 +346,13 @@ def extract_fulltext_url(html_url: str, html_body: bytes) -> Dict[str, str]: # Google Drive # this is assuming it is a PDF if "drive.google.com/file/d/" in html_url and "/view" in html_url: - gdrive_id = html_url.split('/')[5] + gdrive_id = html_url.split("/")[5] if len(gdrive_id) > 10: # https://drive.google.com/uc?export=download&id=15DnbNMZTbRHHqKj8nFaikGSd1-OyoJ24 - return dict(pdf_url=f"https://drive.google.com/uc?export=download&id={gdrive_id}", technique="google-drive") + return dict( + pdf_url=f"https://drive.google.com/uc?export=download&id={gdrive_id}", + technique="google-drive", + ) ### below here we are doing guesses -- cgit v1.2.3