Flask 셸을 사용하여 Linux 터미널의 py/text 파일에서 Python 명령을 실행합니다.

Flask 셸을 사용하여 Linux 터미널의 py/text 파일에서 Python 명령을 실행합니다.

Python과 유사한 플라스크 쉘을 사용하여 Python 파일을 실행할 수 있습니까? 처럼:

flask shell myfile.py

flask shell -f myfile.py

이것이 내가 사용할 때 얻는 전부입니다 $ flask shell --help:

Usage: flask shell [OPTIONS]

  Runs an interactive Python shell in the context of a given Flask
  application.  The application will populate the default namespace of this
  shell according to it's configuration.

  This is useful for executing small snippets of management code without
  having to manually configure the application.

Options:
  --help  Show this message and exit.

다음 변수를 지정했습니다.

export FLASK_APP=run.py
export FLASK_ENV=development

도구 버전 정보: - Linux 3.10 - Python 3.7.1 - Flask 1.0.2

관련 정보