Ho un'installazione WordPress per un blog personale e sto gradualmente trasferendo tutti i piccoli bit web che ho scritto negli anni su pagine del blog.
Una di queste pagine è http://www.projecttoomanycooks.co.uk/cgi-bin/memory/majorAnalysis.py che è un semplice script Python che restituisce un elenco di parole - Mi piacerebbe incorporare quel comportamento all'interno di una pagina wordpress - qualcuno potrebbe indicarmi la giusta direzione per il modo più semplice di gestire una macchia di pitone all'interno di wordpress?
EDIT - seguendo la meravigliosa risposta qui sotto, ho molto di più ... ma sfortunatamente non ancora del tutto lì ...
Ho Python che viene eseguito sul server ...
projecttoomanycooks server [~/public_html/joereddington/wp-content/plugins]#./hello.py
Hello World!
ed è nella stessa directory del plugin attivato ...
Il codice Python ... che ha il seguente codice ...
#!/usr/bin/python
print("Hello World!")
Il php:
<?php
/**
* Plugin Name: Joe's python thing.
* Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
* Description: A brief description of the Plugin.
* Version: The Plugin's Version Number, e.g.: 1.0
* Author: Name Of The Plugin Author
* Author URI: http://URI_Of_The_Plugin_Author
* License: A "Slug" license name e.g. GPL2
*/
/*from http://wordpress.stackexchange.com/questions/120259/running-a-python-scri
pt-within-wordpress/120261?noredirect=1#120261 */
add_shortcode( 'python', 'embed_python' );
function embed_python( $attributes )
{
$data = shortcode_atts(
array(
'file' => 'hello.py'
),
$attributes
);
$handle = popen( __DIR__ . '/' . $data['file'], 'r');
$read = fread($handle, 2096);
pclose($handle);
return $read;
}