Better Programming

Advice for programmers.

Follow publication

How to Use PyScript Within VS Code

Chinmay Sonawane
Better Programming
Published in
4 min readMay 8, 2022
PyScript is a framework that allows users to create rich Python applications in the browser using HTML’s interface. PyScript aims to give users a first-class programming language that has consistent styling rules, is more expressive, and is easier to learn.
PyScript — Run Python in your HTML

You can’t even imagine what we are going to experience. Anaconda’s CEO Peter Wang unveiled quite a surprising project — PyScript, at the PyCon event 2022. The developers at Anaconda have developed a new way to run python scripts on a web browser within HTML.

PyScript is a framework for building powerful Python programs in the browser using the HTML interface. To read the complete guide, head over to their official blog.

Installation and Setup

There is no such installation of any packages to use PyScript.

There are two ways to install and use PyScript

  1. You can either download the zip file and include the following lines of code in <head> tag in your HTML file after unzipping
...
<link rel="stylesheet" href="path/to/pyscript.css" />
<script defer src="path/to/pyscript.js"></script>
...

Please make sure to move the extracted files to the root of your main HTML file

2. Or you can just include these lines directly in your <head>tag:

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

Now, let's move to the next part.

Setting Up VS Code

I will recommend using VS Code as an editor as it provides extensions, the best syntax highlighting, and much more stuff. After installing VS Code go to the extension tab and install the following extensions —

  • pyscript : Beautiful syntax and scoped snippets for PyScript.
Provides code Highlighting for python langage in pyscript in HTML files. More than 200 snippets for PyScript, Django Templte, Python and HTML. Snippets are scoped to the current file. New Language Support for pyscript in VS code Language selection.
Screengrab
Launch a local development server with live reload feature for static & dynamic pages.
Live Server — Automatically load webpage

After that, there is a setting that you need to change in VS Code so that we don't get any errors like “Indentation Error”. To do that Go to File > Preferences > Settings. And in the search bar type, “Format on save” and uncheck the following:

The reason to do this is,— when VS Code saves a file it formats the text and adds/removes spaces which can cause errors in Python.

We have done with all the setup, now it’s time to write our code.

Let’s create a new HTML file and paste the following code in it:

Hello World Program

Hit save and click the Go Live option on the bottom right:

Live Server VsCode

These will open a link http://127.0.0.1:5500/index.html in your default browser. Here’s the result:

Pyscript
Chrome

As you can see in the code we write our python code in <py-script></py-script> tag. The code should be written as we write our python code normally without any spaces at the left unless needed.

Let’s play with a little CSS and make the code a little more complex —

Factorial program

In the above code as you can see, we have used pyscript.write() method instead of just print() method — this is because plain text as an output is not always good.

To apply CSS we created an empty <div> and assign a id to it. Add respective css styling for the id. Then, in the write() method, it takes id as an argument and with f formatting specifies the text that needs to be printed.

Here’s the output in action:

PyScript
Chrome

Working With Libraries

Yes, you can also work with Python modules with PyScript. We use <py-env></py-env> in the <head> tag.

You can specify the .whl file with the full path of your local system like this:

...
<py-env>
- './static/wheels/travertino-0.1.3-py3-none-any.whl'
</py-env>
...

Or you can directly include modules that are built-in Pyodide in the <head> tag like this:

...
<py-env>
- numpy
- matplotlib
- another module here
</py-env>
...

Here’s an example:

Running the page gives the following output:

matplotlib in a browser
Chrome

Alas! We can run Python scripts in our HTML.

If you are looking for more features you can go through the examples in the above repository. There will be official documentation out soon for PyScript. As of now, you can refer to the Getting-Started.MD template on Github.

Want to Connect?Follow me LinkedIn.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Chinmay Sonawane
Chinmay Sonawane

Written by Chinmay Sonawane

Final year student in computer science. Investigate new technologies and write about them. Organized and a Innovative technical writer