悲剧,绝对的悲剧,悲剧中的悲剧。
发布时间:2016-02-11 23:06:11
Property is a recommended way to set and get member variables, especially private ones. The reason is that all attributes are public in Python. Starting names with an underscore or two is just a warning that the given attribute is an implementation detail that may not stay the same in future .........【阅读全文】
发布时间:2015-12-15 13:21:48
Python 中的 paramiko模块是一个非常方便好用的连接远端 ssh 通道的方法。使用起来也很方便:import paramiko ssh = paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())ssh.connect('localhost',username=name,password=pw) 实践中,遇到.........【阅读全文】
发布时间:2015-07-01 16:47:36
下载地址:https://pypi.python.org/pypi/pexpect/<br />官方文档:http://pexpect.readthedocs.org/en/latest/<br /><br /><h2 id="1.概述|outline" style="margin:5px 0px;padding:0px;border:0px;outline:0px;vertical-align:baseline;font-family:HelveticaNeue-Light, 'Helvetica Neue Light', 'Helvetica Neue', H.........【阅读全文】
发布时间:2015-01-27 16:41:33
一个小脚本,利用 urllib,urllib2,httplib,cookielib,BeautifulSoup 等库,自动化的实现一个较为复杂的登录过程,希望本文能为他人提供一些帮助。利用Chrome的调试功能,对登录过程分析之后发现,对目标页面的访问会跳转到登录页面,其中会带有隐藏的表单数据,然后输入用户名密码登录之后,再重定向到目标页面。.........【阅读全文】
发布时间:2014-06-30 16:09:38
Django 项目是一个定制框架,它源自一个在线新闻 Web 站点,于 2005 年以开源的形式被释放出来。Django 框架的核心组件有:用于创建模型的对象关系映射 为最终用户设计的完美管理界面 一流的 URL 设计 设计者友好的模板语言 缓存系统设计你的模型(model)尽管你在 Django 中可.........【阅读全文】