Re: need advice on building core code for python and PHP

2007-05-29 Thread Graham Dumpleton
On May 30, 11:24 am, digimotif <[EMAIL PROTECTED]> wrote: > On May 24, 5:01 pm, Graham Dumpleton <[EMAIL PROTECTED]> > wrote: > > > > > On May 25, 5:24 am, aspineux <[EMAIL PROTECTED]> wrote: > > > > On 24 mai, 19:33, Szabolcs Nagy <[EMAIL PROTECTED]> wrote: > > > > > > Is there a way I could code

Re: need advice on building core code for python and PHP

2007-05-29 Thread digimotif
On May 24, 5:01 pm, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On May 25, 5:24 am, aspineux <[EMAIL PROTECTED]> wrote: > > > > > On 24 mai, 19:33, Szabolcs Nagy <[EMAIL PROTECTED]> wrote: > > > > > Is there a way I could code the base (core) code in Python and have > > > > PHP call it? I've rea

Re: need advice on building core code for python and PHP

2007-05-24 Thread Graham Dumpleton
On May 25, 5:24 am, aspineux <[EMAIL PROTECTED]> wrote: > On 24 mai, 19:33, Szabolcs Nagy <[EMAIL PROTECTED]> wrote: > > > > Is there a way I could code the base (core) code in Python and have > > > PHP call it? I've really liked using SQLAlchemy and there are other > > > * quick and dirty solutio

Re: need advice on building core code for python and PHP

2007-05-24 Thread aspineux
On 24 mai, 19:33, Szabolcs Nagy <[EMAIL PROTECTED]> wrote: > > Is there a way I could code the base (core) code in Python and have > > PHP call it? I've really liked using SQLAlchemy and there are other > > * quick and dirty solution: > in a shell: > $ python yourscript.py pipe_out > in the php

Re: need advice on building core code for python and PHP

2007-05-24 Thread digimotif
> > * simple and nice solution: > do not ever use php I'd like not to use it at all, but there's already been quite a bit of work done with it and I'm sure I won't be able to have it all removed at one time. I REALLY don't like debugging PHP especially after all the stuff I've done with Python

Re: need advice on building core code for python and PHP

2007-05-24 Thread Cameron Laird
In article <[EMAIL PROTECTED]>, digimotif <[EMAIL PROTECTED]> wrote: >All, >I'm currently working with a small development company on a PHP >application they already have. There are several processing tasks >that could be scripted in Python and run in the background to modify a >database, instead

Re: need advice on building core code for python and PHP

2007-05-24 Thread Szabolcs Nagy
> Is there a way I could code the base (core) code in Python and have > PHP call it? I've really liked using SQLAlchemy and there are other * quick and dirty solution: in a shell: $ python yourscript.py pipe_out in the php script: fwrite(pipe_in, input_data); results = fread(pipe_out, size

need advice on building core code for python and PHP

2007-05-24 Thread digimotif
All, I'm currently working with a small development company on a PHP application they already have. There are several processing tasks that could be scripted in Python and run in the background to modify a database, instead of the way they have it now, which waits for a webpage to return from proc