
python
HymanHu-Home
这个作者很懒,什么都没留下…
展开
-
《flask web开发》笔记一
写一个应用,为了方便维护与提高重用性,需要将程序分为不同模块不同包,flask写大型也是如此。 在我们的项目目录下,分别放着五种类型的文件: 1. app(我们的项目目录) 2. test(测试文件夹) 3.migration(迁移或者备份文件夹) 4. congfig.py配置文件 5.manager.py(管理文件,也可命名为项目名.py) Miguel Grinberg这么设计是非常合原创 2015-05-01 04:30:47 · 918 阅读 · 0 评论 -
python __file__的绝对路径与import的搜索路径
今天运行类型下列代码与预想中有出入print os.path.abspath(__file__) #文件不在根目录 os.chdir('/') print os.path.abspath(__file__) #与第一次不一样 但是运行import确实对的test=import__('xx') os.chdir('/') test=import__('xx') reload(test)原创 2015-06-24 17:44:25 · 1916 阅读 · 0 评论