polyplug_python 0.1.1

Python loader for polyplug - loads Python plugins via PyO3
docs.rs failed to build polyplug_python-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

polyplug_python — CPython adapter for the polyplug runtime.

Implements BundleLoader for .py plugin bundles using pyo3 0.28 CPython embedding. The interpreter is initialized exactly once per process.

Usage

use polyplug::runtime::RuntimeBuilder;
use polyplug_python::{PythonConfig, PythonLoader};

let runtime = RuntimeBuilder::new()
    .loader(PythonLoader::new(PythonConfig::default()))
    .build()?;