Skip to content

Instantly share code, notes, and snippets.

@ergoz
Forked from heitorlessa/example_minio_boto3.py
Created November 27, 2025 03:12
Show Gist options
  • Select an option

  • Save ergoz/bb82d03c27e9f208b3a87d1628589175 to your computer and use it in GitHub Desktop.

Select an option

Save ergoz/bb82d03c27e9f208b3a87d1628589175 to your computer and use it in GitHub Desktop.
Minio with python boto3
# Sample as to how to initialize s3 client to work with Minio API compatible - https://github.com/minio/minio
# AWS CLI counterpart - https://docs.minio.io/docs/aws-cli-with-minio
import boto3
s3 = boto3.resource('s3',
endpoint_url='http://<minio_IP>:9000',
config=boto3.session.Config(signature_version='s3v4')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment