ParkWu

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

分类:

技术点:

相关文章:

  • 2021-07-19
  • 2021-10-01
  • 2021-05-06
  • 2022-03-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-24
  • 2021-09-20
  • 2022-12-23
  • 2021-12-01
  • 2021-11-17
相关资源
相似解决方案