Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2441674
  • 博文数量: 328
  • 博客积分: 4302
  • 博客等级: 上校
  • 技术积分: 5486
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-01 11:14
个人简介

悲剧,绝对的悲剧,悲剧中的悲剧。

文章分类

全部博文(328)

文章存档

2017年(6)

2016年(18)

2015年(28)

2014年(73)

2013年(62)

2012年(58)

2011年(55)

2010年(28)

发布时间: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 .........【阅读全文】

阅读(1319) | 评论(0) | 转发(0)

发布时间: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) 实践中,遇到.........【阅读全文】

阅读(28348) | 评论(0) | 转发(0)

发布时间: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.........【阅读全文】

阅读(2087) | 评论(0) | 转发(0)

发布时间:2015-01-27 16:41:33

一个小脚本,利用 urllib,urllib2,httplib,cookielib,BeautifulSoup 等库,自动化的实现一个较为复杂的登录过程,希望本文能为他人提供一些帮助。利用Chrome的调试功能,对登录过程分析之后发现,对目标页面的访问会跳转到登录页面,其中会带有隐藏的表单数据,然后输入用户名密码登录之后,再重定向到目标页面。.........【阅读全文】

阅读(4755) | 评论(0) | 转发(0)

发布时间:2014-06-30 16:09:38

Django 项目是一个定制框架,它源自一个在线新闻 Web 站点,于 2005 年以开源的形式被释放出来。Django 框架的核心组件有:用于创建模型的对象关系映射 为最终用户设计的完美管理界面 一流的 URL 设计 设计者友好的模板语言 缓存系统设计你的模型(model)尽管你在 Django 中可.........【阅读全文】

阅读(5432) | 评论(1) | 转发(3)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册