phpython Wiki
a python interpreter written in php
Status: Pre-Alpha
Brought to you by:
francescobianco
IMPORTANT
Project now on GitHub
visit: https://github.com/phpython/phpython
Only two steps to change your mind
(1) create a simple php file and require the phpython lib
(2) create a simple python file it is smart imported
PLEASE: Notify me any problem bianco@javanile.org
<?php ## file: index.php require_once 'phpython/phpython.php'; phpython::import('demo.py');
.
.
## demo.py print "Hello World"