为MVC模式组织我的python项目,

时间:2011-09-15 07:55:44

标签: python google-app-engine

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环境中是否正确?

1 个答案:

答案 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