{"library":"boto3","type":"sdk","category":null,"description":"Official AWS SDK for Python. Extremely stable API — no breaking changes since v1.0. Two client styles: low-level client (boto3.client()) and high-level resource (boto3.resource()). Credential resolution follows a fixed chain. Region must be specified or set in environment — no global default. Released daily with new AWS service additions.","language":"python","status":"active","version":"1.42.59","tags":["aws","cloud","s3","boto3","python","sdk","infrastructure"],"last_verified":"Tue Jun 09","install":[{"cmd":"pip install boto3","imports":["import boto3\n\n# Explicit credentials (not recommended for production)\nclient = boto3.client(\n    's3',\n    region_name='us-east-1',\n    aws_access_key_id='KEY',\n    aws_secret_access_key='SECRET'\n)\n\n# Preferred: let credential chain resolve\nclient = boto3.client('s3', region_name='us-east-1')","import boto3\n\nsession = boto3.Session(\n    profile_name='my-profile',\n    region_name='eu-west-1'\n)\nclient = session.client('dynamodb')"]},{"cmd":"pip install boto3[crt]","imports":[]}],"homepage":"https://aws.amazon.com/sdk-for-python/","github":"https://github.com/boto/boto3","docs":"https://docs.aws.amazon.com/boto3/latest/","changelog":null,"pypi":"https://pypi.org/project/boto3/","npm":null,"openapi_spec":null,"status_page":null,"smithery":null,"compatibility":{"summary":{"python_range":"3.10–3.9","success_rate":100,"avg_install_s":3.9,"avg_import_s":0.99,"wheel_type":"wheel"},"url":"https://checklist.day/v1/registry/boto3/compatibility"}}