This is my quick-and-dirty logging configuration that works for both scripts and containerized applications. from logging import StreamHandler, getLogger from os import getenv stderr_handler = StreamHandler() log = getLogger(__name__) log.setLevel(getenv('LOG_LEVEL', 'INFO')) log.addHandler(stderr_handler) This…
Python
A collection of 4 posts
Deploy Python Lambdas with Terraform
Deploying lambdas to AWS has always been painful when those Lambdas need more than just boto3 and when sticking to Infrastructure-as-Code. You can bring in the Serverless Framework, but it is complicated to bring into your CICD pipelines and has…
Side-Project: GroupVault
I've restarted work on my side-project: GroupVault. This project comes from my dissatisfaction with many (read: all I've found) of the open-source team-based password managers out there. They either look good but don't support folders; have folders, but look terrible…
NuPass Released
NuPass, my user-readable password generator, is now released (currently 0.2.1) and is available on PyPI.