Crate py_env

source ·
Expand description

§py_env

A Rust library to run Python scripts and install dependencies within a given environment path.

§Table of Contents

§Installation

Simply add the library as a dependency in your Cargo.toml as follows, and invoke via the usage instructions.

[dependencies]
py_env = "1.2.0"

§Usage

§Creating a Python Environment

This library uses a very simple syntax to run Python scripts. To create a Python environment, simply run PyEnv::at(PathBuf).

use py_env::PyEnv;

let env = PyEnv::at("./py_test");

§Running Arbitrary Code

use py_env::PyEnv;

PyEnv::at("./py_test")
    .execute("print('hello world')")
    .expect("Failed to execute code");

§Installing Python Dependencies

The following code installs numpy into the ./py_test directory’s site-packages and uses it in executed code.

use py_env::PyEnv;

PyEnv::at("./py_test")
    .install("numpy")
    .expect("Failed to install numpy")
    .execute("a = numpy.arange(15).reshape(3, 5); print(a.shape)")
    .expect("Failed to execute code");

§Making Environments Impersistent

The following code deletes the python environment off of the disk once it’s done running.

use py_env::PyEnv;

PyEnv::at("./py_test")
    .persistent(false)
    .install("numpy").expect("Failed to install numpy");

§Using the try_ Unwrappers

The try_install() and try_execute() unwrapper functions panic upon errors being returned from their inner install() and execute() functions, which fail only if there is an error spawning the Python commands needed to run or upon waiting for them to finish running. Given that should only really happen if you don’t have Python installed, we have provided these functions for convenience, but warn against their use in production code over handling the errors manually.

use py_env::PyEnv;

PyEnv::at("./py_test")
    .persistent(false)
    .try_install("numpy")
    .try_execute("a = numpy.arange(15).reshape(3, 5); print(a.shape)");

§Contributing

PRs are always welcome and will be reviewed when I see them. Code is released under the MIT License (see below), and as such forking this repo to add features you’d like to see implemented would be greatly appreciated.

§License

This code is licensed under the MIT License.

Structs§

  • Error type.
  • A Python environment that can install packages and execute code.

Type Aliases§

  • Result type with a Boxed error type, for easy chaining of errors in the PyEnv struct