Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

creating folder in s3 bucket python

import boto3

client = boto3.client('s3')

response = client.put_object(
        Bucket='my-top-level-bucket',
        Body='',
        Key='test-folder/'
        )
Source by github.com #
 
PREVIOUS NEXT
Tagged: #creating #folder #bucket #python
ADD COMMENT
Topic
Name
8+1 =