Will PyScript replace Django?

What PyScript is and is not

Have you heard of PyScript?

So what is PyScript?

So what is PyScript?

  • a framework
     
  • run Python applications in the browser
     
  • not to replace JavaScript,
    but rather, you can use with it
     
  • thanks to Pyodide and WASM
     
  • many popular packages of Python avaliable

This is how to use PyScript

<html>
    <head>
      <link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
      <script defer src="https://pyscript.net/latest/pyscript.js"></script>
    </head>

  <body>
    <h1>Let's plot random numbers</h1>
    <div id="plot"></div>
    <py-config type="json">
        {
          "packages": ["numpy", "matplotlib"]
        }
    </py-config>
    <py-script output="plot">
      import matplotlib.pyplot as plt
      import numpy as np
      x = np.random.randn(1000)
      y = np.random.randn(1000)
      fig, ax = plt.subplots()
      ax.scatter(x, y)
      fig
    </py-script>
  </body>
</html>
<html>
    <head>
      <link rel="stylesheet" href="https://pyscript.net/releases/2022.12.1/pyscript.css" />
      <script defer src="https://pyscript.net/releases/2022.12.1/pyscript.js"></script>
    </head>

  <body>
    <h1>Let's plot random numbers</h1>
    <div id="plot"></div>
    <py-config type="json">
        {
          "packages": ["numpy", "matplotlib"]
        }
    </py-config>
    <py-script output="plot">
      import matplotlib.pyplot as plt
      import numpy as np
      x = np.random.randn(1000)
      y = np.random.randn(1000)
      fig, ax = plt.subplots()
      ax.scatter(x, y)
      fig
    </py-script>
  </body>
</html>

 Or you can download and host it yourself

Just like other JS CDN

    <py-config type="toml">
        packages = ["numpy", "matplotlib"]
        paths = ["./data.py"]
    </py-config>

toml format
(default)

    <py-config type="json">
        {
          "packages": ["numpy", "matplotlib"],
          "paths": ["./data.py"]
        }
    </py-config>

json format

load in config source​

<py-config type="json" src="./custom.json"></py-config>

It is useful for ...

  • plug in packages (local wheel or hosted)
  • load in local modules (fetch)
  • change runtime settings (e.g. setting runtime source)
  • adding meta data (e.g. decription, author_name, license)

Interactive Python interface (like jupyter notebook)

<html>
  <head>
    <link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
    <script defer src="https://pyscript.net/latest/pyscript.js"></script>
  </head>
  <py-repl></py-repl>
</html>

Why is it useful?

a.k.a why do it on frontend

Sometime we need to use frontend because...

  • Computation is heavy
     
  • Don't want to provide a playground (crypto mining)
     
  • Data too sensitive to leave user's own machine

So, will PyScript replace Django?

No,

but we can make some amazing stuff if we use them together 🙌

Here is an example

Using PyScript with Django

Other examples

Running Django with Pyscript - Frontend as a Backend?!

More Pyscript examples...

Q & A

  • Can you pull in a python script?
    - Yes now you can with [[fetch]]
     
  • What is the Python version we are using?
    - Choose your version with the `src` var at [[runtimes]]
     
  • Why can't you use <script tag="python">
    - Because <script> is not a custom tag and it is defined by the browser which none of them is supporting Python yet
     
  • Why don't you just use Pyodide?
    - It's like we use Keras to simplify using TensorFlow, PyScript make it easier to using Python on the browser

Q & A

  • Can you pin a package version at <py-config>?
    - Right now you cannot, but you can host the wheel yourself
      (see example here)
     
  • What is the difference between PyScirpt and Brython?
    - PyScript is interpreting Python to WASM instead of JS and has many popular packages available
    - You can also pick which Python WASM backend to use
     
  • Any plan to support BeeWare?
    - I would love to personally, we will see

Will PyScript replace Django

By Cheuk Ting Ho

Will PyScript replace Django

  • 272