In this tutorial, you will learn how to download files from the web using wget Python modules and unzip it. Run pip install wget if you have not yet install wget on your system. Below function will create a new local directory if not exit, download the web file then unzip it. Now, let’s executeContinue reading “download file from web and unzip it”
Category Archives: Python
upload files from local directory to aws s3 bucket
In this article, I will focus on how python Boto3 library makes it easy for us to upload a single or all file(s) in amazon s3 bucket. Amazon Web Services (AWS) Simple Storage Service (S3) is a Storage-as-a-Service provided by Amazon. It’s a general purpose object store, the objects are grouped under a name spaceContinue reading “upload files from local directory to aws s3 bucket”
Delete all files from aws S3 bucket
Amazon Web Services (AWS) Simple Storage Service (S3) is a Storage-as-a-Service provided by Amazon. It’s a general purpose object store, the objects are grouped under a name space called “buckets.” The buckets are unique across the entire AWS S3. Boto library is the official Python SDK for software development and it provides APIs to workContinue reading “Delete all files from aws S3 bucket”
load csv file to aws dynamodb
This blog will describe one of the many ways to load a csv data file into AWS dynamodb database using python boto3 library provided by AWS. Amazon DynamoDB is a fully-managed NoSQL database service that offers speedy performance and scalability to store and retrieve any amount of data.Click here if you would like to setupContinue reading “load csv file to aws dynamodb”