I have recently started to use AWS Lambda to use triggers against some python code I have written. I currently have 2 lambda functions, both of which have been created with
https://aws.amazon.com/blogs/developer/removing-the-vendored-version-of-requests-from-botocore/
AWS removed the vendored version of requests from Botocore.
requests
Steps:
cmd >> pip install requests
pip install requests
Python code:
import requests response = requests.get('https://...')