Re: Which are your favorite UML tools?

2007-04-28 Thread Anastasios Hatzis
On Saturday 28 April 2007 00:26, Russell E. Owen wrote: > In article <[EMAIL PROTECTED]>, > > Bruno Desthuilliers <[EMAIL PROTECTED]> wrote: > > Anastasios Hatzis a écrit : > > > Hello, > > > > > > I'm working on the light-weight MDA

Re: Which are your favorite UML tools?

2007-04-28 Thread Anastasios Hatzis
On Friday 27 April 2007 23:48, Bruno Desthuilliers wrote: > Anastasios Hatzis a écrit : > > Hello, > > > > I'm working on the light-weight MDA tool pyswarm, > > http://pyswarm.sourceforge.net/ (it is about a code-generator for > > Python/PostgreSQL-based softw

Which are your favorite UML tools?

2007-04-26 Thread Anastasios Hatzis
Hello, I'm working on the light-weight MDA tool pyswarm, http://pyswarm.sourceforge.net/ (it is about a code-generator for Python/PostgreSQL-based software. I plan to add support of UML CASE tools other than the one supported currently. I would like to learn which UML tools you use (if any), p

Re: Pattern for foo tool <-> API <-> shell|GUI

2007-03-26 Thread Anastasios Hatzis
On Sunday 25 March 2007 16:44, Steven Bethard wrote: > Anastasios Hatzis wrote: > > I'm working on a tool which is totally command-line based and consisting > > of multiple scripts. The user can execute a Python script in the shell, > > this script does some basic verifi

Re: Pattern for foo tool <-> API <-> shell|GUI

2007-03-24 Thread Anastasios Hatzis
On Saturday 24 March 2007 18:55, [EMAIL PROTECTED] wrote: > On Mar 24, 10:31 am, Anastasios Hatzis <[EMAIL PROTECTED]> wrote: > > I'm looking for a pattern where different client implementations can use > > the same commands of some fictive tool ("foo") by acce

Pattern for foo tool <-> API <-> shell|GUI

2007-03-24 Thread Anastasios Hatzis
I'm looking for a pattern where different client implementations can use the same commands of some fictive tool ("foo") by accessing some kind of API. Actually I have the need for such pattern for my own tool (http://openswarm.sourceforge.net). I already started restructuring my code to separat

distutils: tweaking my ini to use relevant data_files path

2007-03-07 Thread Anastasios Hatzis
I would like to let my setup script know if the user has provided a custom path for the data_files of my distribution, e.g. by using the --install-data option, so the setup can automagically change a config information in my package to the local path applied, instead of using some default path

Re: Progress when parsing a large file with SAX

2007-02-12 Thread Anastasios Hatzis
Diez B. Roggisch wrote: ... I got the same problem with large XML as Marc. So you deserve also my thanks for the example. :-) > class PercentageFile(object): > >def __init__(self, filename): >self.size = os.stat(filename)[6] >self.delivered = 0 >self.f = file(filena

Re: distutils: different names in src and dist/build

2007-02-08 Thread Anastasios Hatzis
Anastasios Hatzis wrote: > Hi, > > is it possible to have different names between the original package name > and that which will be installed? > > Example: > > setup.py > src/ > sdk/ > __init__.py > startme.py > > This usually

distutils: different names in src and dist/build

2007-02-08 Thread Anastasios Hatzis
Hi, is it possible to have different names between the original package name and that which will be installed? Example: setup.py src/ sdk/ __init__.py startme.py This usually creates a distribution file like sdk-0.6.2.tar.gz, which may create site-packages/ sdk/

Re: uml and python

2007-02-08 Thread Anastasios Hatzis
Ralf Schönian wrote: > azrael schrieb: >> hy guys >> >> i've been googling and got several posts, but nothing that is a >> satisfaction in my eyes. can someone tell me a nice uml diagram tool >> with python export (if possible nice gui), or at least nice uml tool >> >> gpl or freeware (widows) pref

Re: distutils: renaming setup.py ok?

2007-02-07 Thread Anastasios Hatzis
Hello Benjamin Niemann wrote: > Hello, > > Anastasios Hatzis wrote: > >> I want to distribute Python site-packages. Is it okay to use other setup >> file names than setup.py, which is mentioned in any place I read in the >> doc? >> >> E.g., setupMySD

distutils: renaming setup.py ok?

2007-02-07 Thread Anastasios Hatzis
I want to distribute Python site-packages. Is it okay to use other setup file names than setup.py, which is mentioned in any place I read in the doc? E.g., setupMySDK.py, setupMyLib.py It seems that it works with distutils at least - but probably doing so has side-effects with other tools which

Out-dated compiled modules (*.pyc)?

2006-08-26 Thread Anastasios Hatzis
Hi folks, how can I prevent Python from adding or using *.pyc files if executing a Python module? I have the strong feeling that the interpreter uses out-dated pyc file instead more recent py files. At least I already had some cases where application behaviour changed only by removing the *.py