Amazon Web Services (AWS) provides a wide range of services and tools to help businesses of all sizes succeed in the cloud. One of those services is Amazon EC2, a virtualized computing environment that allows users to deploy and manage applications quickly. One of the features of EC2 is the…
Category: Topics
A collection of topics in cloud computing.
Creating Automated Image Resizing with Python and Serverless Functions
In today’s digital world, image processing and manipulation are becoming more critical. Resizing images to fit different designs, applications, and other needs is often necessary. Manual resizing images can be a tedious and time-consuming task. Fortunately, there is a way to automate the process using serverless technology and Python.
Write Serverless Logic Using Azure Functions
Serverless computing enables you to create and maintain applications and services without thinking about servers. It can be compared to a microservice or function as a service that is housed on a cloud computing platform. Azure Functions is a serverless application platform. It gives programmers the ability to host business…
Copy the Object from One Bucket to Another in AWS S3
Here, we are going to see how to copy an object from one bucket to another bucket within the same account using Python SDK.
Using python SDK to upload and download the local file into S3 bucket
This blog post will look at using the Python boto3 library to upload the local file into S3 bucket and download the file in S3 bucket to local file.
Creating and Deleting S3 Buckets using Boto3
In this blog, we will create and delete an S3 Bucket using Python SDK or Boto3. We will make use of the inbuilt functions from Boto3 to create and delete an S3 bucket. I’ll also be sharing tips for some error messages I encountered when working on this and these…
Provisioning VM in Azure using Azure Python SDK
We know the process of provisioning the VM in Azure manually by login into portal.azure.com. In this blog we will discusses about provisioning a new VM in Azure using Azure Python SDK and the steps involved in this process.
Host a Static Website on AWS with Python and S3
Ever needed to host a simple static website? Would you like to be able to create and upload the required files to S3 and never once touch the AWS console? With the python AWS SDK (software development kit), boto3, it is easy to configure an s3 bucket to host a…
Create Azure Virtual Machine Scale Sets
Back to Azure Virtual Machine Scale Sets Here is an excellent tutorial with more details to create an Azure virtual machine Scale set: Step 1: Connect to Azure account: The user should connect to his existing azure account using his valid credentials. Step 2: Search for the virtual machine scale sets using…
Introduction to Azure Virtual Machine Scale Sets
Hello! Here is some background information on it, as well as instructions on how to create virtual machine scale sets and scale sets with Python SDK. I’ve included the links further down the page. What is a Virtual Machine Scale Set (VMSS)? We may construct and manage several virtual machines…