mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
10 lines
282 B
JavaScript
10 lines
282 B
JavaScript
export const python = { content: "", target: null };
|
|
export const loadMicroPython = () => ({
|
|
runPython(content) {
|
|
if (document.currentScript?.target) {
|
|
python.content = content;
|
|
python.target = document.currentScript.target;
|
|
}
|
|
},
|
|
});
|