Serverless
Deploying FastAPI app to AWS Lambda with Serverless Framework
Introduction If you're like me, from time to time you want to just create a simple API and quickly share it with others. FastAPI is a modern, Python-based web framework that allows to build such APIs...
read articleSecuring your Lambda function URLs with AWS IAM
Introduction For a long time, the only way to expose your Lambda functions over HTTP was to use AWS API Gateway service. As of April, 2022 that is no longer the case, as AWS introduced a new feature...
read articleWhy I believe "serverless" is the future
Introduction Hello, in this blog post I will try to answer the question why I think serverless is the future. I will go over the things that make it great and also mention a few things that are a bit...
read articleSpeed up CDK deployments with this one simple trick!
Introduction (Sorry for the clickbait title, but I just couldn't resist 😅) Recently, when looking at CDK's changelog, I've noticed this gem released in v2.44.0. From my previous work on Serverless...
read articleMaking NumPy (and other problematic Python packages) work seamlessly with AWS Lambda using Serverless Framework
Introduction AWS Lambda is a great solution for running Python code in serverless manner. Unfortunately, managing dependencies for your serverless Python applications can often be a struggle. If...
read article