python 

官方教程3.5

廖雪峰 python 2.7

Python 的练手项目有哪些值得推荐

https://docs.python.org/dev/library

Windows下使Python2.x版本的解释器与3.x共存的方法

http://pycoders.com/2014/

 http://www.pythondoc.com/

Flask

探索 Flask

http://www.pythonpub.com/

https://github.com/koon-kai/kiblog

http://www.pythondoc.com/flask-mega-tutorial/index.html

flask作者blog

http://www.pythondoc.com/flask-sqlalchemy/index.html

Flask使用小结

http://flask.pocoo.org/extensions/

 The Flask Mega-Tutorial

http://stackoverflow.com/questions/5022066/how-to-serialize-sqlalchemy-result-to-json

Flask 的 Context 机制

pip

pip安装python库总是下载超时,有什么解决方法吗?

例子 pip install -i http://pypi.v2ex.com/simple flask

 pip 配置文件创建脚本

import os

ini="""[global]
index-url = https://pypi.doubanio.com/simple/
[install]
trusted-host=pypi.doubanio.com
"""
pippath=os.environ["USERPROFILE"]+"\\pip\\"
print(pippath)

if not os.path.exists(pippath):
    os.mkdir(pippath)

with open(pippath+"pip.ini","w+") as f:
    f.write(ini)

 

git

使用TortoiseGit在github上创建开源工程

windows  lib

 http://www.lfd.uci.edu/~gohlke/pythonlibs/

 

 online SQL Designer

posted on 2016-04-25 09:33  Park.Wu  阅读(243)  评论(0编辑  收藏  举报