Skip to content
View blade2005's full-sized avatar
Block or Report

Block or report blade2005

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

  1. logging-lambda-example.py logging-lambda-example.py
    1
    import logging
    2
    
                  
    3
    
                  
    4
    def configure_logging(log_context, log_level=logging.INFO, logfmt=None, datefmt=None):
    5
        """Configure logging."""
  2. logging-example.py logging-example.py
    1
    import logging
    2
    
                  
    3
    FORMAT = '%(asctime)-15s %(levelname)s %(module)s.%(funcName)s %(message)s'
    4
    DATEFMT = "%Y-%m-%d %H:%M:%S"
    5
    logging.basicConfig(level=logging.INFO, format=FORMAT, datefmt=DATEFMT)
  3. aws_lambda_tools aws_lambda_tools Public

    Set of libs that I'd like to include in a simple method across AWS Lambda functions

    Python

  4. hammock-global-timeout.py hammock-global-timeout.py
    1
    import hammock
    2
    class Hammock(hammock.Hammock):
    3
        def __init__(self, name=None, parent=None, append_slash=False, **kwargs):
    4
            import requests
    5
            self.request_kwargs = {}