Microsoft Azure Cognitive Services is a collection of cloud-based services that enables developers to add various AI and machine learning capabilities to their applications. These capabilities include image and facial recognition, speech and language understanding, and knowledge mining, among others. With Azure Cognitive Services, developers can build applications that can…
How to trigger a lambda function when a DynamoDB table is modified
This blog will take you through step-by-step instructions on how to trigger a lambda function when the records in the DynamoDB table are updated, created, or deleted on AWS. To follow along with this tutorial, you would need to set up an account with AWS. Instructions to set up an…
Lambda function triggered by an S3 PUT event to sort XML files in an S3 bucket
Serverless functions allow code to be delivered without you designating any infrastructure for the code to be hosted on. AWS Lambda is a FaaS (Function as a Service) platform that allows you to construct serverless functions. Go, Java, Ruby, Python2 and Python3 are just a few of the popular programming languages that AWS Lambda supports. In this blog, we will be using Python3.
Using python SDK to create S3 bucket, upload and download files from S3 bucket
This blog post will focus on creating the S3 bucket, uploading a file and downloading a file from the S3 bucket. AWS SDK for Python (Boto3) makes it easy to integrate your Python application to create, configure, and manage AWS services, such as Amazon Elastic Compute Cloud (Amazon EC2) and…
Azure Cache for Redis in Python
This article describes how to integrate Azure Cache for Redis into a Python application to gain access to a private, dedicated cache that can be accessed from any Azure application. Create an Azure Cache for Redis Instance Log in to the Azure portal and click on create Resource. Choose Databases,…
Hosting a WordPress website using AWS LightSail
http://wordpresscloudblog.com/ Hello World, WELCOME! My blog is about WordPress. You might be wondering what’s so special about creating a WordPress site, but…..this blog will teach you “HOW TO CREATE A WORDPRESS USING AWS LIGHTSAIL.” You read that correctly! Let’s get started…..! WordPress is one of the most popular blogging platforms…
How To Upload File To Azure Blob Using Python
You can follow along with this article as it walks you through each step of uploading a file to Azure blob storage using Python SDK from Visual Studio Code. One needs a working Azure membership and a Python code editor to get started with this. Let’s start by creating an…
Scheduling EC2 Instances with Lambda Function in AWS
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…
Working with DynamoDB in Python using SDK
In this blog, we will be working with DynamoDB as we will be creating a table, loading multiple data, retrieving a particular data, creating and loading single data and in the end deleting the table with the help of python SDK Boto3. Requirements: 1. Python3 –> You would have already…
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.