Applications rely on the advantages of serverless technologies and message delivery is a critical part of that. In distributed applications reliable messaging plays a key role as this allow them to communicate with each other to improve their availability and scalability. You must already know the two methods of messaging- Synchronous - Sender expects an … Continue reading Trigger AWS Lambda with AWS SNS using Python
Category: Programming
10 Most Asked Python Interview Questions For Freshers 2022
With growing competition in the market especially if you are a Fresher, it is very important that you stand out in your interview. You can make quite an impression on your interviewer if your basics are clear. This post is going to help you out to practice all the important Python interview questions . 1. … Continue reading 10 Most Asked Python Interview Questions For Freshers 2022
Check If User is Verified on Instagram using Python?
If you have crashed here then certainly you are not able to get the information whether user profile is verified or not on Instagram using code. After spending a lot of time in exploring Instagram graph API, I got to know that I cant get this information using their official API. I wish someone told … Continue reading Check If User is Verified on Instagram using Python?
Trigger AWS Lambda with AWS SQS using Python
All the developers who have used AWS SQS earlier must have experienced the hassle of polling to receive messages from queue. Whether you use short polling or long polling, it was always a tough thing to handle the process of message retrieval. And then, AWS announced that SQS is available as AWS Lambda event source. … Continue reading Trigger AWS Lambda with AWS SQS using Python
Logging in Python Using Best Practices
Logging is a very important yet underused tool. Over the past couple of years, I have experienced that how logging has helped me to manage the applications in a better way, allowed me to easily communicate the code to other developers and to debug issues quickly! This post will help you to understand how logging … Continue reading Logging in Python Using Best Practices
Facebook Data Deletion Request Callback (Python)
To comply with GDPR ( GDPR – Art. 17 – Right to erasure ), Facebook has recently updated its privacy policy and as per that all the apps which use user data has to provide a way to the users to delete the data captured by Facebook. From now onwards, it is required to enter … Continue reading Facebook Data Deletion Request Callback (Python)