欢迎加入Python爱好者QQ群(Pythoner):103441184

日期:12-02-15 |  分类:Python |  标签: |  0 Comments

# sphinxapi.py 可见于 coreseek-4.1-win32\api\目录内import sphinxapiimport pprintspc = sphinxapi.SphinxClient()spc.SetServer('127.0.0.1', 9312)spc.SetMatchMode(sphinxapi.SPH_MATCH_ANY)# 设置返回数据的开始位置和条数spc.SetLimits(0, 5)# 检索

阅读剩余部分...

日期:12-01-09 |  分类:Python |  标签: |  0 Comments

先看一个测试,看下图: 测试环境:Windows(这个很重要,后面会说) 用Python读取test.txt文件的内容并打印,通过对比UtraEdit里面的内容和open('test.txt').read()打印出来的内容,发现他们竟然杯具的不一样。 Python打印出来的内容怎么被截断了?是Python

阅读剩余部分...

日期:12-01-04 |  分类:Python |  标签: |  0 Comments

之前以为urllib2只能发送GET和POST请求,原来是可用修改的: # urlib2发送HEAD请求import urllib2request = urllib2.Request('http://www.redicecn.com')request.get_method = lambda : 'HEAD'response = urllib2.urlopen(request)print dict(response.info(

阅读剩余部分...

日期:11-12-30 |  分类:Python |  标签: |  0 Comments

如果用正则表达式匹配源串中不包含否某字符串? 匹配不包含字符串redice,正式如下: ^((?!redice).)*$ 测试: import re cr = re.compile(r'^((?!redice).)*$') s = 'i am redice.' cr.search(s) # 不匹配,因此没有输出 s = 'life is short, you need Pyth

阅读剩余部分...

日期:11-12-26 |  分类:Python |  标签: |  0 Comments

Parallel Python(PP) 测试环境:i5-2300(4核) + Win7 测试任何还是之前用的takeuptime()函数,串行计算实验的结果可以看这里: http://www.redicecn.com/html/Python/20111223/355.html 使用PP的测试代码如下: import math, sys, timeimport ppdef takeup

阅读剩余部分...

日期:11-12-23 |  分类:Python |  标签: |  0 Comments

测试代码如下,程序先后分别测试了串行运算、并行运算以及多线程和多进程执行同一个函数所花费的时间。 #! /usr/local/bin/python2.7# test.pyimport timeimport pprocess # 该模块只能在linux下使用import threadingfrom multiprocessing import Process de

阅读剩余部分...

日期:11-10-28 |  分类:Python |  标签: |  1 Comments

本文没有使用Facebook API SDK。 1 申请Facebook API Key。 详细步骤,参考这篇文章: http://help.webscribble.com/display/jconnector/Getting+the+Facebook+Connect+API+Key 注意:Connect URL(也就是Redirect URL,Facebook登录成功后跳转到的路径)一

阅读剩余部分...

日期:11-10-27 |  分类:Python |  标签: |  0 Comments

转自: http://www.doughellmann.com/PyMOTW/datetime/index.html datetime contains functions and classes for working with dates and times, separatley and together. Times Time values are represented with the time class. Times have attributes f

阅读剩余部分...

日期:11-10-27 |  分类:Python |  标签: |  0 Comments

转自: http://www.doughellmann.com/PyMOTW/Queue/index.html The Queue module provides a FIFO implementation suitable for multi-threaded programming. It can be used to pass messages or other data between producer and consumer threads safely.

阅读剩余部分...

日期:11-10-26 |  分类:Python |  标签: |  0 Comments

转自: http://www.doughellmann.com/PyMOTW/zipfile/ The zipfile module can be used to manipulate ZIP archive files. Limitations The zipfile module does not support ZIP files with appended comments, or multi-disk ZIP files. It does support Z

阅读剩余部分...

日期:11-10-22 |  分类:Python |  标签: |  0 Comments

符号连接文件和文件的快捷方式有什么区别呢? 在程序中读写符号连接文件就相当于在读写原文件。读写快捷方式读写的是快捷方式文件本身,而不是原文件。 我的应用场景是这样的: 我有许多程序都要读取同一个文件I:\Webscraping\prxoies.txt(这个文件的内容会

阅读剩余部分...

日期:11-10-21 |  分类:Python |  标签: |  0 Comments

# coding: utf-8from lxml import etree as ETusers = ET.Element('users')user = ET.SubElement(users, 'user')name = ET.SubElement(user, 'name')name.text = u'张三'age = ET.SubElement(user, 'age')age.text = u'25'age.attrib['bod'] = '1986.8'sex =

阅读剩余部分...

redice's Blog  is powered by DedeCms |  Theme by Monkeii.Lee |  网站地图 |  本服务器由西安鲲之鹏网络信息技术有限公司友情提供

返回顶部