Skip to content
View pablo-epl's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Cuernavaca

Block or report pablo-epl

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Code pattern for implementing class-... Code pattern for implementing class-based AWS Lambda handlers in Python
    1
    """Base class for implementing Lambda handlers as classes.
    2
    Used across multiple Lambda functions (included in each zip file).
    3
    Add additional features here common to all your Lambdas, like logging."""
    4
    class LambdaBase(object):
    5
        @classmethod