当前位置: 首页 > python
  • apache mod_python psp

    之前在apache上用python都是通过cgi的方式来调用,这次尝试了一下mod_python模块。

    yum安装apache,python,mod_python。
    安装过程忽略。
    注意python的默认版本,如果有多个版本的话,mod_python还是使用的系统的版本。

    阅读全文
    作者:2hei | 分类:python | 阅读:7,406 views | 标签:
    apache mod_python psp已关闭评论
  • run or spawn in pexpect

    Pexpect is a Python module for spawning child applications and controlling them automatically. Pexpect can be used for automating interactive applications such as ssh, ftp, passwd, telnet, etc. It can be used to a automate setup scripts for duplicating software package installations on different ...

    阅读全文
    作者:2hei | 分类:python | 阅读:4,175 views | 标签:
    run or spawn in pexpect已关闭评论
  • useful python modules zz

    mark zz from http://bbs.chinaunix.net/viewthread.php?tid=1855562 :Graphical interface wxPython http://wxpython.org    Graphical interface pyGtk http://www.pygtk.org    Graphical interface pyQT http://www.riverbankcomputing.co.uk/pyqt/    Graphical interface Pmw http ...

    阅读全文
    作者:2hei | 分类:python | 阅读:3,990 views | 标签:
    useful python modules zz已关闭评论
  • compile pyhton2.7 with zlib

    ensure you have installed zlib on your OS. [2hei.net]# rpm -qa|grep zlib zlib-1.2.3-3 zlib-devel-1.2.3-3 use source code to compile python2.7: ./configure –enable-shared && make && make install If you still have this issue: python: error while loading shared libraries: li ...

    阅读全文
    作者:2hei | 分类:python | 阅读:3,867 views | 标签:,
    compile pyhton2.7 with zlib已关闭评论
  • write a own tools of WorldTime with pytz

    require : python2.6 pytz #!/usr/bin/env python# -*- coding: gbk -*-from datetime import datetime, timedeltafrom time import gmtime, strftimefrom pytz import timezoneimport pytz, time,os #def convert_datetime(unix_timestamp=1143408000, tz=1, long_fmt=1): def convert_datetime(dt=’2007-01-01 ...

    阅读全文
    作者:2hei | 分类:python | 阅读:3,015 views | 标签:
    write a own tools of WorldTime with pytz已关闭评论
  • python解析xml的字符集问题的处理

    python版本:2.6 案例一: test.xml<?xml version=”1.0″ encoding=”utf8″?>调用:xmldoc = minidom.parse(test.xml)报错:Traceback (most recent call last):  File “D:\project\src\myapp\src\xml\testdomxml.py”, line 14, in <module>    xml ...

    阅读全文
    作者:2hei | 分类:python | 阅读:5,277 views | 标签:,
  • linux下用python实现文本menu

    linux用shell实现menu比较简单,今天用python实现了一个,因为python没有switch语法,所以使用了dict来替代,另外调用了linux的clear来清屏,本例只是说明一下简单的实现方法,菜单的命令或者语句可以自由发挥 呵呵。 截个图先: 具体代码如下:#!/usr/bin/evn python# -*- coding: utf-8 -*-#Author: 2hei#2hei.net#Da ...

    阅读全文
    作者:2hei | 分类:OpenSource, python | 阅读:4,462 views | 标签:
    linux下用python实现文本menu已关闭评论
  • python 访问带有web认证的页面

    python 访问带有web认证的页面,经测试方法一可用! #!/usr/bin/env python# -*- coding: utf-8 -*- #方法一#————————————————————–def request_auth_http(url, User = None, Pass = ...

    阅读全文
    作者:2hei | 分类:OpenSource | 阅读:3,903 views | 标签:
    python 访问带有web认证的页面已关闭评论
  • python use BeautifulSoup crawl weather forecast

    python 使用BeautifulSoup(美汤)来抓取天气预报,简单的例子,只当练手 #!/usr/bin/env python# -*- coding: gb2312 -*- #get weather info from internet#http://weather.china.com.cn/city/54511_full.html import urllib,re,unicodedata,string,sys,refrom BeautifulSoup import * if __name__==”__main__&# ...

    阅读全文
    作者:2hei | 分类:OpenSource, python | 阅读:2,941 views | 标签:,
    python use BeautifulSoup crawl weather forecast已关闭评论
  • PYTHON_EGG_CACHE

    在使用python写的cgi是遇到如下问题Can’t extract file(s) to egg cache The following error occurred while trying to extract file(s) to the Python egg cache: [Errno 20] Not a directory: ‘/dev/null/.python-eggs’ The Python egg cache directory is currently set to: /dev/null/.python-e ...

    阅读全文
    作者:2hei | 分类:python | 阅读:5,149 views | 标签:
    PYTHON_EGG_CACHE已关闭评论
  • “小三” 也能玩大蛇

          小三(E63)入手已经几个月了,现在越发的感觉用着顺手,从dospy上看到了很多有价值的东西,也学到了不少关于symbian的知识。
         
          
    小三的功能强大,忍耐力超强、任劳任怨、毫无怨言,除了每早班车上一路陪伴的飞鱼秀外,还给装上了一堆经典老游戏(超级玛丽、泡泡龙、need for
    speed 街霸II、三国志、sky force 当然还有gameloft经典游戏asphalt4),装上了工作中经常用到的putty,还有可替代数据线的超级工具symsmb4,最近把我挚爱的大蛇(python)给捣鼓进去了,而且写了一个最经典的hello world!
          看了python for S60自带的贪吃蛇的代码,居然如此精炼,着实也让我兴奋了一番,有时间再研究下py2sis,咱也赶赶时髦,也整点手机应用啥的,最起码写出个win95来吧,哈哈!
    win95-1.jpg

    阅读全文
    作者:2hei | 分类:python | 阅读:3,972 views | 标签:,
    “小三” 也能玩大蛇已关闭评论
  • python use mysql

    python连接mysql中我遇到了这样的问题 Traceback (most recent call last):  File “<stdin>”, line 1, in <module>  File “build/bdist.linux-i686/egg/MySQLdb/__init__.py”, line 81, in Connect  File “build/bdist.linux-i686/egg/MySQLdb/connections.p ...

    阅读全文
    作者:2hei | 分类:python | 阅读:3,688 views | 标签:
    python use mysql已关闭评论
  • python ip格式转化为long型

    #!/usr/bin/env python# -*- coding: utf-8 -*- #ip转化为long型格式def iptolong(ipaddr):    data = 0L    ip = ipaddr.split(‘.’)    for i in range(0,len(ip)):        if 0 <= long(ip[i]) < 256: &nbs ...

    阅读全文
    作者:2hei | 分类:python | 阅读:4,683 views | 标签:
    python ip格式转化为long型已关闭评论
  • python socket exception

    python socket.errorTab’s error List {10048: ‘The network address is in use.’, 10054: ‘The connection has been reset.’, 10022: ‘An invalid operation was attempted.’, 10058: ‘The network has been shut down.’, 10060: ‘The operation timed o ...

    阅读全文
    作者:2hei | 分类:others | 阅读:3,347 views | 标签:
    python socket exception已关闭评论
  • 编程语言搜索排名 Python第六

    2008年8月。各大搜索引擎如google,msn,yahoo等统计计算出的结果,显示编程语言的关注程度,可见Python排名上升很快。 详细请见来源 tiobe PositionAug 2008 PositionAug 2007 Delta in Position Programming Language RatingsAug 2008 Delta Aug 2007 Status 1 1 Java 21.571% -0.20%   A 2 2 C 1 ...

    阅读全文
    作者:2hei | 分类:others | 阅读:3,650 views | 标签:
    编程语言搜索排名 Python第六已关闭评论
  • python segmentation faults

    因为原来用JAVA写得访问URL的程序结果不是非常准确。索性决定用python重写一个,用来检测网页访问速度,其中用到了httplib、urllib和time等模块。 初学PYTHON,发现当请求访问带有SSL的URL如:“https://google.com 时,httplib.HTTP就显得力不从心,后来发现httplib已经有HTTPSConnection方法可以解决这个问题。可惜HTTP ...

    阅读全文
    作者:2hei | 分类:python | 阅读:2,875 views | 标签:
    python segmentation faults已关闭评论
  • eclipse+pydev搭建python开发环境

    开始学习python,试着配置了一下开发环境 PS:系统Win,已经安装了python2.4以上、并且配置好环境变量,另外安装jdk 1.4以上版本、 eclipse+pydev 下载eclipse的最新版本3.4, 登陆http://www.fabioz.com/pydev/站点下载最新版本Release 1.3.18 ,我试过使用eclipse自带的plug更新没有成功,虽然我指定了可以更行的URL, ...

    阅读全文
    作者:2hei | 分类:OpenSource | 阅读:2,966 views | 标签:,
    eclipse+pydev搭建python开发环境已关闭评论