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
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
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
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
>
> * 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
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
> 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
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