Re: How to use writelines to append new lines to an existing file

2005-09-22 Thread Grigoris Tsolakidis
Use file = open(open('/tmp/myfile', 'a')) the second time when you want to append line "Nico Grubert" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there, > > I would like to open an existing file that contains some lines of text in > order to append a new line at the end of t

Re: Python can do it for me?

2005-06-21 Thread Grigoris Tsolakidis
PyQt for example will do all this + Python but the desition is not that easy <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello people! I think it is my first message here. > > Well, I would go to start a Delphi database program, but now my client > want a program that runs

Re: UML to Python/Java code generation

2005-06-16 Thread Grigoris Tsolakidis
There is tool to generate UML from Python Code... "Maurice LING" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > Is there any UML tools that is able to take UML and generate Python codes? > > Cheers > Maurice -- http://mail.python.org/mailman/listinfo/python-list

Re: extending Python base class in C

2005-06-14 Thread Grigoris Tsolakidis
There was good article of how to do this on DDJ home page www.ddj.com "harold fellermann" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi all, I once read that it is possible to use a python base class for a C extension class. To be precise, I want to achieve the following behavior