python-lambda-local
python-lambda-local copied to clipboard
Run AWS Lambda function on local machine
This allows providing `instance.method` to the -f flag to indicate that the function is nested in another object. It could also allow multiple levels of nesting as it loops into...
Adds a brief outline of how to run this library locally in both READMEs.
The output from this is as follows: ``` Event: {'event': 42} Duration: 0.68 ms Result: hello from lambda ``` We of course can revert this-- the main change is how...
Instead of an event.json file, this allows any executable to be passed to `python-lambda-local` as the event path, which will be executed and its stdout used as the event.
python-local-lambda: 0.1.12 python: 3.9 Another issue has been opened related to this exact error but that was mentioned as specific to Windows and is closed now [https://github.com/HDE/python-lambda-local/issues/45](url) This same error...
I have defined my lambda function handler as a method on a class. The py file that I want to use as the handler creates an instance of this class....
The output is helpful and excellent, but it would be nice to have output that is less verbose. I'm finding I don't need the datetime and requestId, for example. I...
We're currently running multi-package code on AWS Lambda, eg: ``` package_one/ handler.py utils.py package_two/ other.py ``` On AWS Lambda, we're able to use: ```python from . import utils from package_two...
Hi, i am having two lambda's . One lambda calling other lambda by boto3 client. From AWS console it is working fine. how can i test locally in this case....
It would be nice to have a setup for debugging in vscode.