mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
27 lines
945 B
JavaScript
27 lines
945 B
JavaScript
import { fetchPaths, stdio, writeFile } from "./_utils.js";
|
|
import { registerJSModule, run, runAsync, runEvent } from "./_python.js";
|
|
|
|
const type = "micropython";
|
|
|
|
// REQUIRES INTEGRATION TEST
|
|
/* c8 ignore start */
|
|
export default {
|
|
type,
|
|
module: (version = "1.20.0-297") =>
|
|
`https://cdn.jsdelivr.net/npm/@micropython/micropython-webassembly-pyscript@${version}/micropython.mjs`,
|
|
async engine({ loadMicroPython }, config, url) {
|
|
const { stderr, stdout, get } = stdio();
|
|
url = url.replace(/\.m?js$/, ".wasm");
|
|
const interpreter = await get(loadMicroPython({ stderr, stdout, url }));
|
|
if (config.fetch) await fetchPaths(this, interpreter, config.fetch);
|
|
return interpreter;
|
|
},
|
|
registerJSModule,
|
|
run,
|
|
runAsync,
|
|
runEvent,
|
|
writeFile: ({ FS, _module: { PATH, PATH_FS } }, path, buffer) =>
|
|
writeFile({ FS, PATH, PATH_FS }, path, buffer),
|
|
};
|
|
/* c8 ignore stop */
|