RE: python3 html to rtf or doc

2019-05-01 Thread Wen-Chen Hol
Thank you so much Dennis for the direction. :) Wen -Original Message- From: Python-list On Behalf Of Dennis Lee Bieber Sent: Wednesday, 1 May 2019 4:27 PM To: python-list@python.org Subject: Re: python3 html to rtf or doc On Wed, 1 May 2019 00:16:43 +, Wen-Chen Hol declaimed the

python3 html to rtf or doc

2019-04-30 Thread Wen-Chen Hol
Looking for a library or utility that could transform html to rtf in redhat environment. Googled a while still could not find a solution I like. Any suggestions would be much appreciated Thanks in advance Wen With python2.7 and zopyx.convert, was able to do html to rtf export, with some css kept

Re: [ANN] PyInstaller 1.3 released

2006-12-20 Thread Han-Wen Nienhuys
Giovanni Bajo escreveu: > Hello, > > PyInstaller 1.3 is out! > > Grab latest version at: > http://pyinstaller.python-hosting.com/ > > > Description > --- > PyInstaller is a program that converts (packages) Python programs into > stand-alone executables, under Windows, Linux and Irix. It

cross-compiling python: reviewers needed

2006-12-20 Thread Han-Wen Nienhuys
Hello, I have a small patch for Python SVN that makes it possible to cross-compile python on Unix to various other Unix targets. I have successfully built a binary for FreeBSD on Linux. The patch is available at https://sourceforge.net/tracker/?func=detail&atid=305470&aid=1597850&group_id=5470

Well, Python is hard to learn...

2005-09-01 Thread wen
due to the work reason, i have to learn python since last month. i have spent 1 week on learning python tutorial and felt good. but i still don't understand most part of sourcecode of PYMOL(http://pymol.sourceforge.net/) as before. it sucks. anybody do the same thing as i am doing? i wanna seek a

question on "import __main__"

2005-08-26 Thread wen
;? 2. since if running a script independently, the __name__ should be '__main__', why it's not in the above code? thank you in advance. with my kind regards, Wen -- http://mail.python.org/mailman/listinfo/python-list

what's the difference between *.dll and *.pyd if both of them are extended python module?

2005-08-23 Thread wen
ybody has nice way to debug it? thank you. any help would be appreciated. with my best regards, Wen -- http://mail.python.org/mailman/listinfo/python-list

import __main__ where can i find a module called "__main__.py"?

2005-08-21 Thread wen
and, in which case, the following case will happen: if __name__!='__main__': do_sth() any help would be appreciated. -- http://mail.python.org/mailman/listinfo/python-list

Re: how do i add a new path into sys.path?

2005-08-18 Thread wen
if i wanna add the path "C:\temp" into sys.path, and make it available for any other new python apps, like i add C:\temp into windows path , how? thank you. "apa" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > You can do it this way: > > sys.path.append("C:\Temp") > > Alejandro >

Re: how do i add a new path into sys.path?

2005-08-18 Thread wen
if i wanna add the path "C:\temp" into sys.path, and make it available for any other new python apps, like i add C:\temp into windows path , how? thank you. "apa" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > You can do it this way: > > sys.path.append("C:\Temp") > > Alejandro >

how do i add a new path into sys.path?

2005-08-18 Thread wen
e-packages\\win32\\lib', 'C:\\Python23\\lib\\site-packages', 'C:\\Python23\\DLLs', 'C:\\Python23\\lib', 'C:\\Python23\\lib\\plat-win', 'C:\\Python23\\lib\\lib-tk', 'C:\\Python23', 'D:\\Program Files\\DeLano Scientific\\PyMOL\\modu

how do i make exteranl module work under debug session?

2005-08-12 Thread Wen
Hi guys! I'm writing a small DLL thingy that requieres the use of loading the Python interpreter and executing a series of scripts. I have generated an interface to my dll with SWIG and put it in. It works like this: 1) a small .exe loads the .dll and calls the main init() function 2) the dll st

MacOS X drag & drop?

2005-05-15 Thread Han-Wen Nienhuys
following arguments, ['/Users/hanwen/src/maclily/BUILD/lilypond.app/Contents/MacOS/lilypond', '-psn_0_3145729'] how can I find the path to the dropped file from -psn_0_3145729 ? Or is this signaled to the script through a different channel? Thanks! -- Han-Wen Nienhu

pymat on 64bit linux

2005-01-25 Thread Wen Jiang
Hi, Has anyone been able to get pymat work on a 64bit linux system? I compiled the CVS version of pymat with python2.3/matlab7.01 on Mandrake10.1 64bit system, it can start the engine and use put/get function, but segfaults with eval function. -- http://mail.python.org/mailman/listinfo/python-lis

pyMPI momory leak

2005-01-17 Thread Wen Jiang
Hi, I have been using pyMPI to parallelize my code and found that the function mpi.send() leaks memory a lot and thus is not really working for large amount fo data communication. It actually fails after the leak accumulates more than 2G. I wonder if others have the same experience or I did somethi