PyScript
What you need to know
Nicholas H.Tollervey
ntollervey@anaconda.com
PyScript is an open-source platform to bring
Python to the browser via WASM
```python
<py-script>
def hello(name="World!"):
"""
Return a friendly greeting.
"""
return f"Hello, {name}"
print(hello("PyCon Sweden!"))
</py-script>
```
The Future..?
(Is closer than you think)