Skip to content

Instantly share code, notes, and snippets.

import os
from contextlib import contextmanager
from tempfile import NamedTemporaryFile
from typing import IO, Dict, Generator, Literal
import boto3
from botocore.exceptions import ClientError
S3ConnectorMode = Literal["r", "w", "a"]