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 pathlib import Path | |
| import mimetypes | |
| import hashlib | |
| import boto3 | |
| from concurrent.futures import ThreadPoolExecutor | |
| from typing import List, Dict, Union | |
| class S3Sync: | |
| def __init__(self, bucket: str, aws_region: str = "us-east-1"): |