Menu

phpython - get started

Francesco Bianco

IMPORTANT
Project now on GitHub
visit: https://github.com/phpython/phpython

phpython - get started

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"