摘要: 转载:http://python-china.org/t/725 参考:http://www.cnblogs.com/alamZ/p/6943869.html 用 __all__ 暴露接口,这是一种约定 Python 可以在模块级别暴露接口: __all__ = ["foo", "bar"] 1、提 阅读全文
posted @ 2017-08-24 20:19 脚本小娃子 阅读(2528) 评论(0) 推荐(0) 编辑
摘要: 1、app.DEBUG=True时,代码更改后立即生效 2、APP.jinja_env.auto_reload = True时,模板修改后立即生效,无需重启 参考:https://stackoverflow.com/questions/9508667/reload-flask-app-when-te 阅读全文
posted @ 2017-08-24 19:19 脚本小娃子 阅读(3853) 评论(0) 推荐(0) 编辑
摘要: 1、登录过程中的记住我功能如图: 2、这样在登录认证的时候,客户端会传递两个cookie:remember_token和Tsession 3、即使客户端不传递cookie中的Tsession,只传递remember_token的值,也能认证成功 4、当然只传递Tsession也会认证成功 5、如果登 阅读全文
posted @ 2017-08-24 17:20 脚本小娃子 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 1、web服务器(比如Apache、Nginx、Tomcat、Jetty、IIS)属于静态服务器,只能返回静态的文件,服务器多是C/C++语言开发的。web服务器可以说一个request proxy,根据配置,把不同的请求转发给不同的server处理,例如静态的文件请求自己处理,这个时候它就像一个w 阅读全文
posted @ 2017-08-24 17:14 脚本小娃子 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 1、httpie的安装:https://github.com/jakubroztocil/httpie#macos 2、http://python.jobbole.com/87450/ 3、http://cizixs.com/2017/03/08/flask-insight-session 4、ht 阅读全文
posted @ 2017-08-24 15:26 脚本小娃子 阅读(309) 评论(0) 推荐(0) 编辑