Your cart is currently empty!
Tag: AWS Boto3 Tutorial
Streamline Your S3 Management: How to Count Small Files Locally with Python
I recently came across a need to count objects in an S3 bucket that were of particular size. There isn’t a native way to do this within the S3 console so I decided to script it out using Python and the AWS SDK. You can see all of the code on my GitHub. The script…
Securing AWS S3 Objects with Python: Implementing SSE-S3 Encryption
In the cloud-native world, data security is paramount, and securing Amazon Web Services (AWS) S3 storage is a critical task for any developer. In this article, we dive into a Python script designed to ensure that all your S3 objects are encrypted using Server-Side Encryption with S3-Managed Keys (SSE-S3). This method provides robust security by…