python

Tech

Invoking AWS Lambda with gRPC Protobuf : Analysis and Implementation design

On an abstract level, both gRPC functions and Lambda are "Remote Methods". End user/Client tries to invoke a method defined in a remote computer. But there are differences in the way gRPC and Lambda are designed. This article analyses and combines ...

Read
HowTo

How to publish your Python Package to pip

Here is a step-by-step guide to follow to publish your Python package to PyPI, so anyone who is interested can download your package using the 'pip install <your-package>' command. By making it available on PyPI, you are essentially making your library open source. This article will not focus on developing the python package, but it will be a guide to publish the package in PyPI.

Read
Tech

I published my first Open Source Python library

On July 30, 2021, I published my first Open Source Python Library on PyPI. Here's the update and background story of why I built this.

Read