eseunghwan / python_shell.dart

Python Environment Manager and Executor for dart and flutter
MIT License
3 stars 3 forks source link


python_shell

Python Environment Manager and Executor for dart and flutter


Available for:

Supported Platforms:





Install



Usage

var shell = PythonShell(); await shell.initialize();

await shell.runString("{pythonCode}");

- use instance
```dart
import "package:python_shell/python_shell.dart";

PythonShell().initialize();
var instance = ShellManager.getInstance("default");
await instance.runString("{pythonCode}");



for further informations, refers to shell.dart