Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/beginning-pyscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ module in the document's `<head>` tag:
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>🦜 Polyglot - Piratical PyScript</title>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css">
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
</head>
<body>
Expand Down Expand Up @@ -156,6 +157,7 @@ In the end, our HTML should look like this:
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>🦜 Polyglot - Piratical PyScript</title>
<link rel="stylesheet" href="https://pyscript.net/releases/2024.1.1/core.css">
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
</head>
<body>
Expand Down Expand Up @@ -234,7 +236,7 @@ account and change it to your satisfaction.

### From a web server

Just host the three files (`pyscript.toml`, `index.html`
Just host the three files (`pyscript.json`, `index.html`
and `main.py`) in the same directory on a static web server somewhere.

Clearly, we recommend you use [pyscript.com](https://pyscript.com) for this, but any
Expand Down