Embed a small bit of code that converts between units. An example of a Rust library that can be embedded in Python and Web Assembly.
Go to file
Dorian f584b17d7b Prepare documentation for building a Python and WebAssembly libraries. 2019-02-06 10:39:39 -05:00
src Wire up to run function as Python code. 2019-02-06 08:57:13 -05:00
.gitignore Create a quick calculation and test to make sure it works. 2019-02-04 09:05:11 -05:00
Cargo.toml Wire up to run function as Python code. 2019-02-06 08:57:13 -05:00
LICENSE.md Add a basic readme and desire of the project. 2019-02-01 08:41:54 -05:00
Pipfile Wire up to run function as Python code. 2019-02-06 08:57:13 -05:00
Pipfile.lock Wire up to run function as Python code. 2019-02-06 08:57:13 -05:00
README.md Prepare documentation for building a Python and WebAssembly libraries. 2019-02-06 10:39:39 -05:00
test.py Add instructions and test for running against pytest. 2019-02-06 09:04:04 -05:00

README.md

Embedded Unit Converter

Embed a small bit of code that converts between units of measure, e.g. Fahrenheit to Celsius.

An example of a Rust library that is embeddable in Python and WebAssembly.

Getting setup

Insure the following dependencies are in place:

  • Rust v1.32+ (nightly)
    • Install using rustup toolchain install nightly
    • Set default toolchain rustup default nightly
  • Python dependencies
    • Python 3 Development headers apt install python3-dev
    • pipenv pip install --user pipenv
  • WebAssembly

Running the Python example

  1. Build the rust crate first: cargo build
  2. Install dependencies and run in a virtualenv: pipenv install && pipenv shell
  3. Create the Python package with: pyo3 develop
  4. Run the tests: pytest test.py

Running the WebAssembly example

TODO:

Documentation