Skip to content

Instantly share code, notes, and snippets.

@JicLotus
Last active September 12, 2020 21:05
Show Gist options
  • Select an option

  • Save JicLotus/f46f07c5c33f6b3ef09461efe7d726bb to your computer and use it in GitHub Desktop.

Select an option

Save JicLotus/f46f07c5c33f6b3ef09461efe7d726bb to your computer and use it in GitHub Desktop.

Revisions

  1. JicLotus revised this gist Sep 12, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion your_lambda_fn.py
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    """Sample doctring docu."""
    """Sample docstring docu."""

    import pandas as pd
    import sqlalchemy
  2. JicLotus revised this gist Sep 12, 2020. 1 changed file with 4 additions and 3 deletions.
    7 changes: 4 additions & 3 deletions your_lambda_fn.py
    Original file line number Diff line number Diff line change
    @@ -1,12 +1,13 @@
    """Sample doctring docu."""

    import pandas as pd
    import sqlalchemy

    def handler(event, context):

    """Sample handler function."""
    response = {
    "statusCode": 200,
    "body": body
    "body": "",
    }

    return response

  3. JicLotus created this gist Sep 12, 2020.
    12 changes: 12 additions & 0 deletions your_lambda_fn.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    import pandas as pd
    import sqlalchemy

    def handler(event, context):

    response = {
    "statusCode": 200,
    "body": body
    }

    return response