wasmer-examples/python-wasmer-starter
Public
wasmer run wasmer-examples/python-wasmer-starter
wasmer run wasmer-examples/python-wasmer-starter
This is a simple Python HTTP server.
Usage
Modify the logic of your simple Python HTTP server in the src/main.py
file.
You can run the server with Python with:
$ python src/main.py
Or you can also use wasmer run
to run it locally (check out the Wasmer install guide):
$ wasmer run . --net --env PORT=8080
[!TIP] You can also run
wasmer run wasmer-examples/python-wasmer-starter --net --env PORT=8080
to run the remote package
Open http://localhost:8080 with your browser to see the Python application response.
Deploy on Wasmer Edge
The easiest way to deploy your Python app is to use the Wasmer Edge.
Live example: https://python-worker-wasmer-starter-worker.wasmer.app/
Run this commmand to deploy to Wasmer Edge:
wasmer deploy
[!NOTE] You will need to change the namespace in
wasmer.toml
to your own namespace and app name inapp.yaml
to your own app name.