1. ホーム
  2. python

[解決済み] PythonでのAWS Lambdaのインポートモジュールエラー

2022-06-30 20:44:53

質問

AWS Lambdaのpythonデプロイメントパッケージを作成しています。私は1つの外部依存の要求を使用しています。私はAWSのドキュメントを使用して外部依存関係をインストールしました。 http://docs.aws.amazon.com/lambda/latest/dg/lambda-python-how-to-create-deployment-package.html . 以下は私のPythonコードです。

import requests

print('Loading function')

s3 = boto3.client('s3')


def lambda_handler(event, context):
    #print("Received event: " + json.dumps(event, indent=2))

    # Get the object from the event and show its content type
    bucket = event['Records'][0]['s3']['bucket']['name']
    key = urllib.unquote_plus(event['Records'][0]['s3']['object']['key']).decode('utf8')
    try:
        response = s3.get_object(Bucket=bucket, Key=key)
        s3.download_file(bucket,key, '/tmp/data.txt')
        lines = [line.rstrip('\n') for line in open('/tmp/data.txt')]
        for line in lines:
            col=line.split(',')
            print(col[5],col[6])
        print("CONTENT TYPE: " + response['ContentType'])
        return response['ContentType']
    except Exception as e:
        print(e)
        print('Error getting object {} from bucket {}. Make sure they exist and your bucket is in the same region as this function.'.format(key, bucket))
        raise e

project-dirディレクトリの内容をZipして、lambdaにアップロードしました(ディレクトリではなく、ディレクトリの内容をZipします)。この関数を実行すると、以下のようなエラーが発生します。

START RequestId: 9e64e2c7-d0c3-11e5-b34e-75c7fb49d058 Version: $LATEST
**Unable to import module 'lambda_function': No module named lambda_function**

END RequestId: 9e64e2c7-d0c3-11e5-b34e-75c7fb49d058
REPORT RequestId: 9e64e2c7-d0c3-11e5-b34e-75c7fb49d058  Duration: 19.63 ms  Billed Duration: 100 ms     Memory Size: 128 MB Max Memory Used: 9 MB

親切にエラーのデバッグを手伝ってください。

どのように解決するのですか?

ラムダ関数のファイル名が原因でエラーになりました。ラムダ関数を作成する際に、ラムダ関数ハンドラを要求されます。その際、ファイル名を Python_File_Name.Method_Name . このシナリオでは、私はそれを lambda.lambda_handler ( lambda.py はファイル名)。

以下にスナップショットを掲載します。