摘要: 欢迎进入Flask大型教程项目!http://www.pythondoc.com/flask-mega-tutorial/index.html所使用的 python 扩展flask\Scripts\pip install flask==0.9flask\Scripts\pip install flask-loginflask\Scripts\pip install flask-openidflask\Scripts\pip install flup 阅读全文
posted @ 2014-02-19 10:53 zhangxiaodel 阅读(679) 评论(0) 推荐(0) 编辑
摘要: 摘自http://www.cnblogs.com/Alexander-Lee/archive/2010/07/01/1769097.htmlWHY PYTHON Rocks人们学习PHP是因为要得到一份工作;人们学习Java是因为他们选修了计算机科学这门课;人们学习Python是因为他们爱这门语言,因为他们追寻美,如果我雇佣了一个Python程序员,他很有可能是优秀的程序员。以上的话是Rails On Ruby的创始人在一次与人讨论的时候如是说转战Python已经4个月了,想总结一下为什么会选择python,为什么程序员应该学习Python,使用Python可以为你带来什么。首先,python 阅读全文
posted @ 2014-02-19 10:35 zhangxiaodel 阅读(302) 评论(0) 推荐(0) 编辑
摘要: import osfor (p,d,f) in os.walk("要删除的目录路径"): if p.find('.svn')>0: os.popen('rd /s /q %s'%p)转自 http://www.cnblogs.com/Alexander-Lee/archive/2010/02/23/1671905.html 阅读全文
posted @ 2014-02-19 09:53 zhangxiaodel 阅读(247) 评论(0) 推荐(0) 编辑