I need to do a rest-call within a python script, that runs once per day.
I can\'t pack the \"requests\" package into my python-package using the AWS Lambdas. I get the error
I finally solved the problem: The structure in my zip file was broken. It is important that the python script and the packed dependencies (as folders) are in the root of the zip file. This solved my problem.
It's a bit depressing if you find such easy errors after hours of try and failure.