Minor Changes
-
#4873
1e424ff2
Thanks @dom96! - feature: implemented basic Python supportHere is an example showing how to construct a MiniFlare instance with a Python module:
const mf = new Miniflare({ modules: [ { type: "PythonModule", path: "index", contents: "from js import Response;\ndef fetch(request):\n return Response.new('hello')", }, ], compatibilityFlags: ["experimental"], });
Patch Changes
- #4874
749fa3c0
Thanks @mrbbot! - chore: bumpworkerd
to1.20240129.0