Python对我来说是新的,我在组织文件代码方面遇到了问题。
我想做类似的事情:
./
/views
index.html // Django files
/controlers
main.py
/models
Greeting.py // I take the same classe exemple of Google App Engine Website
/libs
xxx.py //some Lib and tools classes
/static
/js
/css
/images
而真正的问题是文件树在python环境中是否正确?
答案 0 :(得分:1)
是的,您的结构有效,或者如果您发现我的示例在这里有用,那就是我如何组织一个较小的应用引擎应用:
.
├── app.yaml
├── conf.py
├── main.py
├── model.py
├── static
│ ├── 1.gif
│ ├── 2.gif
│ ├── 3.gif
│ ├── 4.gif
│ ├── anim.gif
│ ├── main.css
│ ├── main.js
└── templates
├── base.html
├── error.html
├── info.html
├── upload.html
├── user.html
└── welcome.html