phpython Wiki
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
create a simple php file and require the phpython lib
:::php
<?php
## file: index.php
require_once 'phpython/phpython.lib.php';
phpython::import('demo.py');
create a simple python file it is smart imported
:::python
## demo.py
print "Hello World"