我正在尝试导入我的<dependency>
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-core</artifactId>
<version>9.0.0-M3</version>
函数,该函数位于front / app app
内部,但是以某种方式__init__
不能从from front.app import app
使用。
tooler.py
run.py
.
├── settings
│ ├── settings.json
├── front
│ ├── app
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── views.cpython-36.pyc
│ │ ├── static
│ │ │ ├── css
│ │ │ │ └── demo.css
│ │ │ ├── data.json
│ │ │ └── js
│ │ │ └── script.js
│ │ ├── templates
│ │ │ └── public
│ │ │ └── index.html
│ │ ├── views.py
│ │ └── views.pyc
│ └── run.py
├── tooler.py
├── __pycache__
│ └── utils.cpython-36.pyc
├── requirements.txt
├── tester.py
├── tree
└── utils.py
初始化
from app import app
if __name__ == "__main__":
app.run()
我希望输出from flask import Flask
app = Flask(__name__)
from app import views
,但实际输出是running the server flask