An open API service indexing awesome lists of open source software.

https://github.com/shorepine/amyrepl

Experimental python REPL for AMY (and maybe soon to be Tulip Desktop Web)
https://github.com/shorepine/amyrepl

Last synced: over 1 year ago
JSON representation

Experimental python REPL for AMY (and maybe soon to be Tulip Desktop Web)

Awesome Lists containing this project

README

          

# amyrepl
Experimental python REPL for AMY (and maybe soon to be Tulip Desktop Web)

# build notes

in AMY (maybe make this a submodule here), do `make web`

That creates `amy.js` and `amy.wasm` and `amy.aw.js` in `amy/docs`, copy that here

move / put this on line 16 of `amy.js` - still figuring out why emscripten puts this in the wrong spot

`globalThis.AudioWorkletModule = amyModule;`

eg.

```js
...
return moduleArg.ready
}
);
})();

globalThis.AudioWorkletModule = amyModule;
if (typeof exports === 'object' && typeof module === 'object')
module.exports = amyModule;
...
```

run `python server.py`, go to localhost:8000