waspy 0.9.0

A Python interpreter written in Rust, designed for WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
//! Utility modules for Waspy.

pub mod fs;
pub mod logging;
pub mod paths;

pub use fs::{
    collect_compilable_python_files, contains_function_definitions, is_special_python_file,
};