I am creating a AWS Lambda python deployment package. I am using one external dependency requests. I installed the external dependency using the AWS documentation. Below is my Python code.
JavaScript
x
27
27
1
import requests
2
3
print('Loading function')
4
5
s3 = boto3.client('s3')
6
7
8
def lambda_handler(event, context):
9
#print("Received event: " + json.dumps(event, indent=2))
10
11
# Get the object from the event and show its content type
12
bucket = event['Records'][0]['s3']['bucket']['name']
13
key = urllib.unquote_plus(event['Records'][0]['s3']['object']['key']).decode('utf8')
14
try:
15
response = s3.get_object(Bucket=bucket, Key=key)
16
s3.download_file(bucket,key, '/tmp/data.txt')
17
lines = [line.rstrip('n') for line in open('/tmp/data.txt')]
18
for line in lines:
19
col=line.split(',')
20
print(col[5],col[6])
21
print("CONTENT TYPE: " + response['ContentType'])
22
return response['ContentType']
23
except Exception as e:
24
print(e)
25
print('Error getting object {} from bucket {}. Make sure they exist and your bucket is in the same region as this function.'.format(key, bucket))
26
raise e
27
Created the Zip the content of the project-dir directory and uploaded to the lambda(Zip the directory content, not the directory). When I am execute the function I am getting the below mentioned error.
JavaScript
1
6
1
START RequestId: 9e64e2c7-d0c3-11e5-b34e-75c7fb49d058 Version: $LATEST
2
**Unable to import module 'lambda_function': No module named lambda_function**
3
4
END RequestId: 9e64e2c7-d0c3-11e5-b34e-75c7fb49d058
5
REPORT RequestId: 9e64e2c7-d0c3-11e5-b34e-75c7fb49d058 Duration: 19.63 ms Billed Duration: 100 ms Memory Size: 128 MB Max Memory Used: 9 MB
6
Advertisement
Answer
Error was due to file name of the lambda function. While creating the lambda function it will ask for Lambda function handler. You have to name it Python_File_Name.Method_Name
. In this scenario, I named it lambda.lambda_handler
(lambda.py
is the file name).