python
文章平均质量分 69
Jessen_Qiang
展现自我,超越自我
展开
-
使用python urllib2获取网页信息
urllib2的用法,记录一下。import urllib2req = urllib2.Request("http://www.baidu.com")res = urllib2.urlopen( req )html = res.read()print htmlres.close()翻译 2011-12-01 14:45:13 · 583 阅读 · 0 评论 -
在Django中使用databrowse
1:把'django.contrib.databrowse' 加入到INSTALLED_APPS 中。2:在urls.py里面写上下面的导入语句 from django.contrib import databrowse3:注册要browse的models,参数是models的类而不是实例。databrowse.site.register(SomeModel)dat原创 2012-04-17 09:16:43 · 1057 阅读 · 0 评论 -
教你一步一步使用django
1. django-admin.py startproject mysite.这样会在你的目录下创建mysite目录2. django-admin.py startproject会生成四个文件3. python manage.py startapp books4.创建 model class Publisher(models.Model): name = mode原创 2012-04-17 10:37:51 · 2005 阅读 · 0 评论 -
Python读写配置文件的实际操作步骤解析
本文主要讲述的是python 读写配置文件的例子以及相关代码的介绍,以及如何修改配置中的变量的值,以下是相关的介绍。AD:python 读写配置文件在实际应用中具有十分强大的功能,在实际的操作中也有相当简捷的操作方案,以下的文章就是对python 读写配置文件的具体方案的介绍,望你浏览完下面的文章会有所收获。python 读写配置文件ConfigParser模块是p转载 2012-04-16 13:40:13 · 620 阅读 · 0 评论 -
Python编码时应该注意的一些事情
围绕一门语言学习它的文化精髓能让你成为一名更优秀的程序员更进一步,如果你还没读过Python之禅(Zen of Python) ,那么打开Python的命令提示符输入import this,列表中的每一项你都可以在这里找个相对应的例子。(Credit: itswater ) 吸引我注意力的一条是:优雅胜于丑陋 (Beautiful is better than ugly)看下面例子转载 2012-05-25 10:38:45 · 407 阅读 · 0 评论 -
django和apache的整合
今天花了一整天的时间,终于将django整合到apache了。记录一下省得以后再花时间研究。1.安装python2.7和Apache2.2,这个网上参考的例子比较多,我就不多说了。2.安装完成后,接下来:3.安装mod_python,这个包需要手动生成,不想生成的可以到这下载下载,一路根据提示选择即可。4. 修改配置文件打开:urls.pyurlpatter原创 2012-06-13 16:36:52 · 1816 阅读 · 0 评论 -
SOAP web service with soaplib 2.0
from soaplib.core import Applicationfrom soaplib.core.server.wsgi import Application as WSGIApplicationfrom django.http import HttpResponseclass DjangoSoapApp(WSGIApplication): """ Generi翻译 2012-08-31 09:32:54 · 1608 阅读 · 0 评论 -
Convert django model into soaplib model, to expose webservices
#contrib.soaplib.serializer.pyfrom soaplib.serializers.clazz import ClassSerializerclass BaseClassSerializer(ClassSerializer): ''' Helper class to convert django model into soaplib model翻译 2012-08-31 09:36:03 · 735 阅读 · 0 评论 -
SOAP views with on-demand WSDL generation
# soaplib_handler.pyfrom soaplib.wsgi_soap import SimpleWSGISoapAppfrom soaplib.service import soapmethodfrom soaplib.serializers import primitive as soap_typesfrom django.http import Http翻译 2012-08-31 09:33:33 · 681 阅读 · 0 评论 -
SOAP web service with soaplib 0.9+
from soaplib.serializers.primitive import Boolean, Stringfrom soaplib.service import DefinitionBase, rpcfrom soaplib.wsgi import Applicationfrom django.http import HttpResponse# the class with a翻译 2012-08-31 09:32:06 · 710 阅读 · 0 评论 -
用python的soaplib模块实现WSDL和SOAP协议的web service
IBM开发者网络上和dive into python上的python webservice的例子大多是用ZSI和SOAPpy实现的基于WSDL和SOAP协议的webservice,但这两个包已经三四年没有维护了,它们依赖的包也不再维护了,在python2.5以上版本中安装时也会有警告。好在有一个更好的包可以实现WSDL和SOAP,它就是soaplib,目前版本是0.8.1,可以通过eazy_i转载 2012-08-22 11:04:11 · 3193 阅读 · 0 评论 -
soaplib helloworld.py
#!/usr/bin/env python# -*- coding: utf-8 -*-## soaplib - Copyright (C) 2009 Aaron Bickell, Jamie Kirkpatrick## This library is free software; you can redistribute it and/or# modify it under the原创 2012-08-22 11:10:08 · 774 阅读 · 0 评论 -
flex Django通过PyAmf通信
通过PyAmf来通信,需要有几点注意: 1.自定义一个amfgateway.py #_*_ coding:UTF-8 _*_from pyamf.flex import ArrayCollection, ObjectProxyfrom pyamf.remoting.gateway.django import DjangoGatewayimport pyamfdef s原创 2012-04-16 16:11:56 · 659 阅读 · 0 评论 -
python自动化测试
为了让单元测试代码能够被测试和维护人员更容易地理解,最好的解决办法是让开发人员遵循一定的规范来编写用于测试的代码,具体到Python程序员来讲,则是要采用PyUnit这一自动测试框架来构造单元测试用例。目前PyUnit已经得到了大多数Python开发人员的认可,成了事实上的单元测试标准。1.要被测试的类: widget.py# 将要被测试的类class Widget: def转载 2012-04-16 16:27:59 · 2057 阅读 · 0 评论 -
学习使用python发送邮件
############################# 使用python发送邮件############################import os import smtplib import mimetypes from email.MIMEMultipart import MIMEMultipart from email.MIMEBase原创 2011-12-01 14:38:34 · 570 阅读 · 0 评论 -
python类对象学习
学习python类的使用翻译 2011-12-01 14:42:28 · 372 阅读 · 0 评论 -
python元组学习
注意两种写法,结果完全不同哦~~L = [1, 2]M = LL = L+[3]print M, LX = [5, 6]P = XX += [7,8]print X, P[1, 2] [1, 2, 3][5, 6, 7, 8] [5, 6, 7, 8]翻译 2011-12-01 15:07:48 · 475 阅读 · 0 评论 -
学习python核心模块
学习os用法:原创 2011-12-01 15:11:55 · 379 阅读 · 0 评论 -
Python 随机生成中文验证码
http://www.oschina.net/code/snippet_12_325转载 2011-12-26 22:54:50 · 433 阅读 · 0 评论 -
python对文件夹的一些操作
代码片段(2)[代码] 复制文件夹view sourceprint?01def CopyFolderOs(sFolder,tFolder): 02 sourcePath=sFolder 03 destPath=tFolder转载 2011-12-26 22:52:31 · 551 阅读 · 0 评论 -
Python 文件夹复制
http://www.oschina.net/code/snippet_16840_1654转载 2011-12-26 23:06:27 · 522 阅读 · 0 评论 -
python正则表达式学习
转载 2011-12-29 10:58:09 · 302 阅读 · 0 评论 -
Python-字符串操作方法(转)
Python-String-Function 字符串中字符大小写的变换: * S.lower() #小写 * S.upper() #大写 * S.swapcase() #大小写互换 * S.capitalize() #首字母大写 * String.capwords(S) #这是模块中的方法。它把S用split转载 2012-04-12 10:03:50 · 442 阅读 · 0 评论 -
Python 自动连接ssh
#!/usr/bin/python#-*- coding:utf-8 -*-import sys, time, ostry: import pexpectexcept ImportError: print """ You must install pexpect module """ sys.exit(1)addr_map = {转载 2011-12-26 22:47:06 · 794 阅读 · 0 评论 -
flex通过PyAmf调用python服务
例子摘自官方文档:这是服务端代码:Server.py# Copyright (c) The PyAMF Project.# See LICENSE.txt for details."""Simple PyAMF server.@see: U{Simple Example} documentation.@since: 0.5"""import lo原创 2012-04-13 15:42:41 · 2859 阅读 · 0 评论 -
python学习资料
python教程:http://www.czug.org/python/tutorial/原创 2011-11-14 09:07:51 · 123 阅读 · 0 评论