phpython Wiki
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
Only two steps to change your mind
:::php
<?php
## file: index.php
require_once 'phpython/phpython.php';
phpython::import('demo.py');
.
.
.
:::python
## demo.py
print "Hello World"