Re: call php function from python

2011-04-01 Thread Tim Roberts
CrabbyPete wrote: > >I have a python script that automatically loads wordpress, up to the >point that it asks for the admin password. >that is a php function call > >function wp_install( $blog_title, $user_name, $user_email, $public, >$deprecated = '', $user_password = '' ) > >Is there a way to ca

Re: call php function from python

2011-03-31 Thread John Bokma
CrabbyPete writes: > I have a python script that automatically loads wordpress, up to the > point that it asks for the admin password. > that is a php function call > > function wp_install( $blog_title, $user_name, $user_email, $public, > $deprecated = '', $user_password = '' ) > > Is there a way

call php function from python

2011-03-31 Thread CrabbyPete
I have a python script that automatically loads wordpress, up to the point that it asks for the admin password. that is a php function call function wp_install( $blog_title, $user_name, $user_email, $public, $deprecated = '', $user_password = '' ) Is there a way to call this function from python?