Re: running python as a dameon

2008-09-06 Thread kaer
On 6 sep, 22:16, kaer <[EMAIL PROTECTED]> wrote: > On 6 sep, 15:44, Michael Palmer <[EMAIL PROTECTED]> wrote: > > > > > On Sep 5, 9:56 pm, Sean Davis <[EMAIL PROTECTED]> wrote: > > > > > What I want > > > > to do is to provide the python NLP program as a service to any other > > > > PHP/Java/Ruby p

Re: running python as a dameon

2008-09-06 Thread kaer
On 6 sep, 15:44, Michael Palmer <[EMAIL PROTECTED]> wrote: > On Sep 5, 9:56 pm, Sean Davis <[EMAIL PROTECTED]> wrote: > > > > > > What I want > > > to do is to provide the python NLP program as a service to any other > > > PHP/Java/Ruby process request. So the mapping is > > > > http -> apache -> P

Re: running python as a dameon

2008-09-06 Thread Michael Palmer
On Sep 5, 9:56 pm, Sean Davis <[EMAIL PROTECTED]> wrote: > > What I want > > to do is to provide the python NLP program as a service to any other > > PHP/Java/Ruby process request. So the mapping is > > > http -> apache -> PHP/Java/Ruby/... -> Python NLP > > Why not use a simple CGI script or wsgi

Re: running python as a dameon

2008-09-05 Thread Sean Davis
On Sep 5, 5:55 pm, peyman <[EMAIL PROTECTED]> wrote: > Hi > > I have a Natural Language Processing (NLP) code written in python that > reads into memory a large training file and then given a sentence tags > it, using the training data. I want to put this NLP code on a server > which handles all in

running python as a dameon

2008-09-05 Thread peyman
Hi I have a Natural Language Processing (NLP) code written in python that reads into memory a large training file and then given a sentence tags it, using the training data. I want to put this NLP code on a server which handles all incoming client http requests via PHP. What I want to do is to pro