RE: php and python: how to unpickle using PHP?

2006-10-12 Thread Ted Zeng
, 2006 8:07 AM To: python-list@python.org Subject: Re: php and python: how to unpickle using PHP? [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Ted Zeng: I store some test results into a database after I use python To pickle them (say, misfiles=['file1','file2']) Now I want

Thread hijack: [was Re: php and python: how to unpickle using PHP?]

2006-10-03 Thread Steve Holden
Ted Zeng wrote: Hi, I store some test results into a database after I use python To pickle them (say, misfiles=['file1','file2']) Now I want to display the result on a web page which uses PHP. How could the web page unpickle the results and display them? Is there a PHP routine that can

Re: php and python: how to unpickle using PHP?

2006-10-03 Thread Tim Arnold
[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Ted Zeng: I store some test results into a database after I use python To pickle them (say, misfiles=['file1','file2']) Now I want to display the result on a web page which uses PHP. How could the web page unpickle the results and

php and python: how to unpickle using PHP?

2006-10-02 Thread Ted Zeng
Hi, I store some test results into a database after I use python To pickle them (say, misfiles=['file1','file2']) Now I want to display the result on a web page which uses PHP. How could the web page unpickle the results and display them? Is there a PHP routine that can do unpickle ? Ted zeng

Re: php and python: how to unpickle using PHP?

2006-10-02 Thread Irmen de Jong
Ted Zeng wrote: Hi, I store some test results into a database after I use python To pickle them (say, misfiles=['file1','file2']) Now I want to display the result on a web page which uses PHP. How could the web page unpickle the results and display them? Is there a PHP routine that can

Re: php and python: how to unpickle using PHP?

2006-10-02 Thread bearophileHUGS
Ted Zeng: I store some test results into a database after I use python To pickle them (say, misfiles=['file1','file2']) Now I want to display the result on a web page which uses PHP. How could the web page unpickle the results and display them? Is there a PHP routine that can do unpickle ?

Re: php and python: how to unpickle using PHP?

2006-10-02 Thread Thomas Jollans
On Mon, 02 Oct 2006 23:44:26 +0200, Irmen de Jong [EMAIL PROTECTED] let this slip: Ted Zeng wrote: (...) Try to find a language neutral marshaling format (yaml? xml? whatever) and access that from both Python and PHP... yaml should be well-suited due to its nature as serialization format,