flask的外部脚本的使用

1.在flask文件夹中新建一个manage.py文件,在文件中输入以下代码

from flask_script import Manager
from learn_flask_script import app

manager = Manager(app)

@manager.command
def hello():
    print("hello world")

在终端中使用python manage.py hello即可运行该脚本
这里写图片描述

2.在flask文件夹中新建一个manage.py文件,在文件中输入以下代码

from flask_script import Manager
from learn_flask_script import app

manager = Manager(app)

@manager.option('-m','--msg',dest='msg_val',default='world')
def hello_world(msg_val):
    print('hello '+msg_val)

在终端中使用python manage.py hello -m csdn或者python manage.py hello --msg_val=csdn即可运行该脚本
运行结果为hello csdn

你可能感兴趣的:(Python,Flask)