Skip to content
forked from phpython/phpython

Use phpython to write python code in your php projects without using WSGI, CGI or FastCGI.

License

Notifications You must be signed in to change notification settings

zaxebo1/phpython

 
 

Repository files navigation

phpython

Use phpython to write python code in your php projects without using WSGI, CGI or FastCGI.

Get started

Only two steps to change your mind

  1. create a simple php file and require the phpython lib
<?php
## file: index.php

require_once 'phpython/phpython.php';

phpython::import('demo.py');
  1. create a simple python file it is smart imported
## demo.py

print "Hello World"

PLEASE: Notify me any problem bianco@javanile.org

About

Use phpython to write python code in your php projects without using WSGI, CGI or FastCGI.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 61.9%
  • C 37.5%
  • Other 0.6%