“Flask”对象不可迭代 |使用 zappa 的 AWS lambda

问题描述 投票:0回答:1

我正在尝试使用 zappa 在 AWS lambda 上部署 Flask 应用程序。 (我对此很陌生,所以如果我需要提供更多相关信息,请询问!)

Flask 应用程序具有以下目录结构:

backend
├── __init__.py
├── __pycache__
├── app.py
├── databases
├── home.py
├── static
├── templates
└── utils.py

应用程序由 app.py 实例化,如下所示:

import os
from flask import Flask as FlaskApp
from flask_cors import CORS
import boto3
import logging
from backend import home

def initialize_app(test_config=None, *args, **kwargs):

    print("MADE IT HERE TOO")

    # create and configure the app
    app = FlaskApp(__name__, instance_relative_config=True)

    # Set up logging
    logger = logging.getLogger()
    logger.setLevel(logging.INFO)
    logger.info("Boto3 Version: %s", boto3.__version__)

    print("APP HAS REACHED THIS POINT")       

    s3_client = boto3.client('s3')

    print("Here too...")

    # Example of logging
    try:
        response = s3_client.list_buckets()
        logger.info("S3 Buckets: %s", response['Buckets'])
    except Exception as e:
        logger.error("Error accessing S3: %s", str(e))

    if test_config is None:
        # load the instance config, if it exists, when not testing
        app.config.from_pyfile('config.py', silent=True)
    else:
        # load the test config if passed in
        app.config.from_mapping(test_config)

    print("made it here before os makedirs")

    # ensure the instance folder exists
    try:
        os.makedirs(app.instance_path)
    except OSError:
        pass

    print("made it here before home")

    app.register_blueprint(home.bp)

    print("made it here after home")

    return app

...家庭蓝图只是一个Python文件,里面有很多函数。有些已路由,有些则未路由。但重要的是,某些东西总是像这样路由到根“/”:

bp = Blueprint('home', __name__, url_prefix='/')

@bp.route('/')
def index():
    return "Welcome to the Home Page!"

我正在使用这些 zapper 设置在 AWS lambda 中部署应用程序:

{
"dev": {
    "app_function": "backend.app.initialize_app",
    "aws_region": "af-south-1",
    "exclude": [
        "boto3",
        "dateutil",
        "botocore",
        "s3transfer",
        "concurrent",
        "node_modules",
        "frontend",
        "awsTests"
    ],
    "profile_name": "default",
    "project_name": "backend",
    "runtime": "python3.10",
    "s3_bucket": "zappa-htprl75eu",
    "slim_handler": true
}

}

那里没什么疯狂的。

在 CloudWatch 日志中,我看到所有打印语句均正确显示。然而,lambda 实例返回一个错误:

“Flask”对象不可迭代

AWS CloudWatch report logs showing the error

任何人都可以帮我确定为什么会发生此错误吗?

我已经检查了我的 home.py 文件中是否有任何可能正在调用 app 的内容,但事实并非如此。所以我只能认为 zappa 必须以触发此错误的方式使用从initialize_app()返回的应用程序。


如果有帮助,我正在使用 python 版本 3.10.6,这些是我的requirements.txt 文件中的包,比后端高一级:

argcomplete==3.5.1
blinker==1.7.0
boto3==1.35.32
botocore==1.35.32
certifi==2024.8.30
cffi==1.17.1
cfn-flip==1.3.0
charset-normalizer==3.3.2
click==8.1.7
cryptography==43.0.1
durationpy==0.9
Flask==3.0.2
Flask-Cors==4.0.0
hjson==3.1.0
idna==3.10
itsdangerous==2.1.2
Jinja2==3.1.3
jmespath==1.0.1
kappa==0.6.0
MarkupSafe==2.1.5
pdf2image==1.17.0
pillow==10.3.0
placebo==0.9.0
pycparser==2.22
PyJWT==2.9.0
PyMuPDF==1.24.2
PyMuPDFb==1.24.1
python-dateutil==2.9.0.post0
python-slugify==8.0.4
PyYAML==6.0.2
requests==2.32.3
s3transfer==0.10.2
six==1.16.0
text-unidecode==1.3
toml==0.10.2
tqdm==4.66.5
troposphere==4.8.3
urllib3==2.2.3
Werkzeug==3.0.1
zappa==0.59.0
python amazon-web-services flask aws-lambda zappa
1个回答
0
投票

根据 Zappa 文档,

app_function
设置需要是对 Flask 应用程序对象的引用,例如
mymodule.app
,而不是对返回 Flask 应用程序对象的函数的引用。

因此,您可以将

initialize_app
函数转换为内联、模块级代码来初始化
app
对象,然后将配置更改为:

"app_function": "backend.app"
© www.soinside.com 2019 - 2024. All rights reserved.