This file contains hidden or 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
from argparse import ArgumentParser | |
from os import mkdir, remove | |
from os.path import exists | |
from pathlib import Path | |
from urllib.parse import urlparse | |
from google.auth.transport.requests import Request | |
from google.auth.external_account_authorized_user import ( | |
Credentials as ExternalAccountCredentials, | |
) |