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
import boto3 | |
from boto3 import session | |
from botocore.client import Config | |
from boto3.s3.transfer import S3Transfer | |
import os | |
#Use the API Keys you generated at Digital Ocean | |
ACCESS_ID = 'xxxxxxxxxxxxxxxx' | |
SECRET_KEY = 'xxxxxxxxxxxxxxxx' |
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
import boto3 | |
from boto3 import session | |
from botocore.client import Config | |
from boto3.s3.transfer import S3Transfer | |
#Use the API Keys you generated at Digital Ocean | |
ACCESS_ID = 'xxxxxxxxxxxxxxxxxxx' | |
SECRET_KEY = 'xxxxxxxxxxxxxxxxxxx' | |
# Initiate session |