Commit 8a4520a9 authored by Ondřej Borýsek's avatar Ondřej Borýsek
Browse files

Reorder imports

parent 1197b36d
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# Standard libraries
import base64
import cloudscraper
import getopt
import glob
import hashlib
@@ -11,18 +11,21 @@ import json
import locale
import math
import os
import pandas
import pprint
import re
import sys
import urllib.parse
from copy import deepcopy
from os import path
from tqdm import tqdm
from urlextract import URLExtract
from xml.etree import ElementTree
from typing import List, Dict

# External libraries
import pandas
from tqdm import tqdm
import cloudscraper
from urlextract import URLExtract

DOCX_SUPPORT = False  # Disable this if you don't need docx output and want to have easier setup.

if DOCX_SUPPORT: