摘要: 安装 gunicorn pip install gunicorn pip 是一个重要的工具,python 用来管理包。还有一个最佳生产就是每次使用 pip 安装的库,都写入一个 requirement 文件里面,既能知道自己安装了什么库,也方便别人部署时,安装相应的库。 pip freeze > r 阅读全文
posted @ 2017-12-20 23:52 爱吃醋的工程师 阅读(3380) 评论(0) 推荐(0) 编辑
摘要: 安装: pip install requests 使用: import requests HTTP请求:GET、POST、PUT、DELETE、HEAD、OPTIONS 1) get res = requests.get("https://github.com/timeline.json") 2) 阅读全文
posted @ 2017-12-20 23:47 爱吃醋的工程师 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 最简单的就是关闭校验: response = requests.get(url, verify=False) 阅读全文
posted @ 2017-12-20 21:07 爱吃醋的工程师 阅读(197) 评论(0) 推荐(0) 编辑
摘要: from flask import Flask app = Flask(__name__) app.run('0.0.0.0', debug=True, port=8100, ssl_context=('/Users/kracekumarramaraju/certificates/server.cr 阅读全文
posted @ 2017-12-20 21:05 爱吃醋的工程师 阅读(405) 评论(0) 推荐(0) 编辑
摘要: wget --no-check-certificate https://pypi.python.org/packages/source/p/pip/pip-8.0.2.tar.gz#md5=3a73c4188f8dbad6a1e6f6d44d117eeb tar -zxvf pip-8.0.2.ta 阅读全文
posted @ 2017-12-20 21:04 爱吃醋的工程师 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 不建议卸载python2 可能会导致系统内其他软件无法使用 1.下载 wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0a1.tar.xz 2. 解压 tar xvf Python-3.6.0a1.tar.xz 3.编译安装 进入目录 阅读全文
posted @ 2017-12-20 21:03 爱吃醋的工程师 阅读(131) 评论(0) 推荐(0) 编辑