
Add your company website/link
to this blog page for only $40 Purchase now!
ContinueFutureStarr
Jeffy song
After six years of practice, I’ve always been curious about what makes a “typical” piano so special. I couldn’t find a simple answer outside of playing one, so I decided to build one. In order to achieve a fully functioning piano, I needed a solid plan, a dedicated team, and a business model that could support a lifespan of a few decades.
\
Jeffy is Serverless "Application" Framework for Python, which is suite of Utilities for Lambda functions to make it easy to develop serverless applications.
from jeffy.framework import get_app app = get_app() def handler(event, context): app.logger.info({'foo': 'bar
from jeffy.framework import get_app app = get_app() app.logger
from jeffy.framework import get_app from jeffy.settings import Logging app = get_app(logging=Logging(correlation_attr_name='my-trace-id')) def handler(event, context): app.logger.info({'foo': 'bar'}) (Source: github.c
import logging from jeffy.framework import get_app from jeffy.settings import Logging app = get_app(logging=Logging(log_level=logging.DEBUG)) def handler(event, context): app.logger.info({'foo': 'bar'}) (Source: github.com You can change the log level of Jeffy logger. (Source:github.com))om).update_context({ 'username': 'user1', 'email': 'user1@example.com' }) def handler(event, context): app.logger.info({'foo': 'bar'}) (Source: github.com)Mainly, Jeffy is focusing on three things.
github.com github.com))from jeffy.framework import get_app app = get_app() app.logger.update_context({ 'username': 'user1', 'email': 'user1@example.com' }) @app.handlers.common() def handler(event, context): import logging from jeffy.framework import get_app from jeffy.settings import Logging app = get_app(logging=Logging(log_level=logging.DEBUG)) def handler(event, context): app.logger.info({'foo': 'bar'}