摘要:今天模拟网页版微信登录的时候又碰到一个SSLError的问题 今天碰到一个requests.exceptions.SSLError: EOF occurred in violation of protocol (_ssl.c:749)的问题,查阅stackoverflow,才知道原来是request
阅读全文
摘要:转载自:https://segmentfault.com/a/1190000007780963
阅读全文
摘要:redis总结 要想在python中使用redis,要先在本地安装redis,并开启redis-server,然后再导入python的redis包,pip install redis 怎么在Linux上安装redis:https://discuss.pivotal.io/hc/en-us/artic
阅读全文
摘要:https://tech.meituan.com/avalanche-study.html
阅读全文
摘要:http://blog.csdn.net/chenshuai1993/article/details/51519384 http://www.jianshu.com/p/6b5eca8d908b
阅读全文
摘要:在Mac上设置环境变量:MAIL_USERNAME 和MAIL_PASSWORD $ export MAIL_USERNAME="your-username" $ export MAIL_PASSWORD="your-password"
阅读全文
摘要:参考:http://www.cnblogs.com/mengdd/p/3585038.html
阅读全文
摘要:Http Header中的User-Agent,user agent叫做用户代理,是Http协议中的一部分,属于头域的组成部分。它是一个特殊字符串头,是一种向访问网站提供你所使用的浏览器机器及其版本、操作系统及其版本、浏览器内核、等信息的标志。通过这个标志,用户所访问的网站可以显示不同的排版从而为用
阅读全文