This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Required dependencies | |
# ! pip install dnspython | |
# ! pip install xmltodict | |
import dns | |
import dns.resolver | |
from os import listdir, getlogin | |
from json import dumps, loads | |
import xmltodict | |
from packaging import version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# google-api-python-client | |
# google-auth-httplib2 | |
# google-auth-oauthlib | |
# requests | |
import asyncio | |
from dataclasses import dataclass | |
from pathlib import Path | |
from typing import Union | |
from googleapiclient.errors import HttpError | |
from google.oauth2.credentials import Credentials |