5 Must-Know Secrets of Python Functions!

We all know about Python Functions but let's go one more time. Python functions are like mini-programs inside your main program. They help you do tasks more easily and avoid repeating the same code. Imagine you are a great Chef and one morning you got a great idea of making a Turkey Sandwich, you made … Continue reading 5 Must-Know Secrets of Python Functions!

Understanding Higher-Order Functions: Python Map, Filter, Reduce

The post discusses three important functions in Python: Map, Filter, and Reduce, which are higher-order functions. Map applies a function to every element in an iterable, Filter acts as a filter based on a specific condition, and Reduce aggregates elements into a single value. These functions are valuable for effective data manipulation in Python.

5 Practical Use Cases of Python Decorators You Should Know

Python decorators allow you to enhance and modify the behavior of functions, methods, and classes without permanently altering the original code. Practical applications include logging, caching for improved performance, input data validation, retry mechanisms for resilience, and authorization for access control. Experimenting with decorators can reveal their wide-ranging benefits in various work scenarios.

Create AWS Athena View Using AWS CDK

Athena Views!Sounds like SQL Views, correct? To some extent they are, means athena view is also a logical table and it does not hold any physical data.Good news is that manually, it is created similarly as SQL view, but what if you need to create it programmatically? In today's era most of the companies follow … Continue reading Create AWS Athena View Using AWS CDK

Trigger AWS Lambda with AWS SNS using Python

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

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)