About pysvn for x64 system

2011-12-19 Thread 1011_wxy
Hi: I want to use svn to backup my oracle db object daily,so i want to use pysvn module. server: windows server 2008 64bit python:Python 2.6.5 (r265:79096, Mar 19 2010, 18:02:59) [MSC v.1500 64 bit (AMD64)] on win32 I have downloaded pysvn from "http://pysvn.tigris.org/files/documents/1233/4

回复: Re: BeautifulSoup import error

2011-05-05 Thread 1011_wxy
Dear JM: Thank you very much. BeautifulSoup does not work well with Python3.2 . 2011-05-06 Kerry 发件人: James Mills 发送时间: 2011-05-06 09:47 主 题: Re: BeautifulSoup import error 收件人: python list On Fri, May 6, 2011 at 11:37 AM, 1011_wxy <1011_...@163.com> wrote: > I got a imp

BeautifulSoup import error

2011-05-05 Thread 1011_wxy
Dear friends: I got a import error when I use Python 3.2 to import BeautifulSoup 3.2.0 . Is there any differences between Python 3.2 and other version? This is my first time to use Python3.2 . And the error message will be as below. >>> from BeautifulSoup import BeautifulSoup Traceback (most re

回复: Re: Need your help

2011-04-28 Thread 1011_wxy
Dear Thomas,JM,Chris Rebert: I got it. Thank you very very very much. Best Regards 2011-04-29 1011_wxy 发件人: Thomas Rachel 发送时间: 2011-04-28 21:26 主 题: Re: Need your help 收件人: python-list@python.org Am 28.04.2011 13:14, schrieb Chris Rebert: > import a, b, sys >

回复: Re: Need your help

2011-04-28 Thread 1011_wxy
Hi JM: python c.py > afile.log could you pls give me the whole example? I am so sorry that I am a beginner in Python. 2011-04-28 1011_wxy 发件人: Jean-Michel Pichavant 发送时间: 2011-04-28 20:42 主 题: Re: Need your help 收件人: 1011_wxy <1011_...@163.com> 抄 送: "python-l

Need your help

2011-04-28 Thread 1011_wxy
Hi friends: Here I need some help. #encoding="utf-8" #moudle a.py def a(): print " function a!" #encoding="utf-8" #moudle b.py def b(): print " function b!" #encoding="utf-8" #moudle c.py import a import b def c(): a.a() b.b() Here in function c,How can i record all the informati

How deal with the coding

2011-04-21 Thread 1011_wxy
Dear All: I got a coding problem when I use python to read html from web which is encode with gb2312, ater I insert the data I read from web into Oracle DB with coding gbk, I found messy code by select from PL/SQL. I tried the way ".encode('gbk','ignore')" before insert Oracle by using cx_Oracle