tonius/python

Tonius | Python :: A package that provides flexibility and built to smooth-run simple and complex python scripts inside PHP and Laravel projects.

Downloads

5

Stars

0

Version

2.0.1

python

================================================================================

Version Build Status Total Downloads StyleCI License Monthly Downloads composer.lock

Tonius Python :: A package built to smooth-run simple and complex python scripts inside PHP and Laravel projects. This is very useful when we need to perform system based operations and at the same time want to use the result in out PHP Applications. Credits to Symfony Foundation.

Installation

Via Composer

$ composer require tonius/python

Usage

You must have python installed.

use tonius\python\Facades\Python;
$response = Python::run($fileName);

Available options;

$options = [
    'test' => true, // To run a default test script if filename is not passes
    'output' => 'json', // Output types : json, file, raw. it's raw by default
    'fileName' => 'example.json' // .txt, php, e.t.c If you specify output to be file, you must pass the name of file to dump the output
];

Run Example script

use tonius\python\Facades\Python;
$response = Python::run(null, ['test' => true ]);

Change log

Please see the changelog for more information on what has changed recently.

Testing

$ ./vendor/bin/phpunit

Contributing

Please see contributing.md for details and a todolist.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

MIT. Please see the license file for more information.

olubunmitosin

Author

olubunmitosin