Python AWS lambda函数错误

Python AWS lambda函数错误,python,amazon-web-services,lambda,google-drive-api,aws-lambda,Python,Amazon Web Services,Lambda,Google Drive Api,Aws Lambda,我已经用python函数创建了一个部署包,用AWS Lambda创建了一个google驱动器文件夹。然后我尝试对其进行测试,发现一个错误: { "errorMessage": "main() takes from 0 to 1 positional arguments but 2 were given", "errorType": "TypeError", "stackTrace": [ [ "/var/runtime/awslambda/bootstra

我已经用python函数创建了一个部署包,用AWS Lambda创建了一个google驱动器文件夹。然后我尝试对其进行测试,发现一个错误:

    {
  "errorMessage": "main() takes from 0 to 1 positional arguments but 2 were given",
  "errorType": "TypeError",
  "stackTrace": [
    [
      "/var/runtime/awslambda/bootstrap.py",
      249,
      "handle_event_request",
      "result = request_handler(json_input, context)"
    ]
  ]
}
我的.zip中有两个主要文件。第一个文件包含主函数,另一个文件有安全漏洞,另一个文件夹和文件是lib。名为lambda_function.py的主文件,代码为:

from __future__ import print_function

import httplib2
import os

from apiclient import discovery
from oauth2client import client
from oauth2client import tools
from oauth2client.file import Storage

try:
    import argparse

    flags=argparse.ArgumentParser(parents=[tools.argparser]).parse_args()
except ImportError:
    flags=None

# If modifying these scopes, delete your previously saved credentials
# at ~/.credentials/drive-python-quickstart.json
SCOPES='https://www.googleapis.com/auth/drive.file'
CLIENT_SECRET_FILE='client_secret.json'
APPLICATION_NAME='Drive API Python Quickstart'


def get_credentials():
    """Gets valid user credentials from storage.

    If nothing has been stored, or if the stored credentials are invalid,
    the OAuth2 flow is completed to obtain the new credentials.

    Returns:
        Credentials, the obtained credential.
    """
    home_dir=os.path.expanduser('~')
    credential_dir=os.path.join(home_dir, '.credentials')
    if not os.path.exists(credential_dir):
        os.makedirs(credential_dir)
    credential_path=os.path.join(credential_dir,
                                 'drive-python-quickstart.json')

    store=Storage(credential_path)
    credentials=store.get()
    if not credentials or credentials.invalid:
        flow=client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
        flow.user_agent=APPLICATION_NAME
        if flags:
            credentials=tools.run_flow(flow, store, flags)
        print('Storing credentials to ' + credential_path)
    return credentials

def main(drive_service=None):
    """Shows basic usage of the Google Drive API.

    Creates a Google Drive API service object and outputs the names and IDs
    for up to 10 files.
    """
    credentials=get_credentials()
    http=credentials.authorize(httplib2.Http())
    service=discovery.build('drive', 'v3', http=http)

    file_metadata={
        'name': 'Invoices',
        'mimeType': 'application/vnd.google-apps.folder'
    }
    file=service.files().create(body=file_metadata,
                                      fields='id').execute()
    print('Folder ID: %s' % file.get('id'))

if __name__ == '__main__':
    main()

AWS Lambda中的处理程序是Lambda_function.main,如果我尝试进行测试,就会出现错误。如果我在控制台上这样做,我会成功地执行这段代码并在GoogleDriveAPI中创建一个文件夹。也许谁知道我做错了什么?请提供帮助。

AWS Lambda处理程序有两个参数,例如事件和上下文:

def lambda_handler(event, context):

感谢您的回复,看,现在我修复了它,但我得到了下一个错误,“errorMessage”:“模块初始化错误”,在日志中看起来是:模块初始化错误:[Errno 30]只读文件系统:'/home/sbx_user1078'您需要使用正在使用的libs创建一个部署包,请阅读:我已经创建了它!所有模块都在.zip文件中。我使用virualenv创建它,步骤如下:1。virtualenv-p/usr/bin/python3.5谷歌2。安装GoogleDriveAPI模块时使用:pip安装--升级GoogleAPI python客户端3。将站点包中的所有模块添加到zip文件错误:[Errno 30]只读文件系统:我不确定,但可能是tmp路径有问题,请阅读此处: