mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-21 11:01:26 -05:00
Rename runtimes with interpreter (#1082)
This commit is contained in:
@@ -9,6 +9,6 @@ glob:
|
||||
---
|
||||
getting-started
|
||||
py-config-fetch
|
||||
py-config-runtime
|
||||
py-config-interpreter
|
||||
writing-to-page
|
||||
```
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Setting a pyodide runtime
|
||||
# Setting a pyodide interpreter
|
||||
|
||||
Pyscript will automatically set the runtime for you, but you can also set it manually. This is useful if you want to use a different version than the one set by default.
|
||||
Pyscript will automatically set the interpreter for you, but you can also set it manually. This is useful if you want to use a different version than the one set by default.
|
||||
|
||||
## Development setup
|
||||
|
||||
@@ -13,7 +13,7 @@ To get started, let's create a new `index.html` file and import `pyscript.js`.
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
|
||||
<title>Runtime</title>
|
||||
<title>Interpreter</title>
|
||||
|
||||
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
|
||||
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
||||
@@ -25,11 +25,11 @@ To get started, let's create a new `index.html` file and import `pyscript.js`.
|
||||
</html>
|
||||
```
|
||||
|
||||
We are using the pyodide CDN to setup our runtime, but you can also download the files from [the pyodide GitHub release](https://github.com/pyodide/pyodide/releases/tag/0.22.0a3), unzip them and use the `pyodide.js` file as your runtime.
|
||||
We are using the pyodide CDN to setup our interpreter, but you can also download the files from [the pyodide GitHub release](https://github.com/pyodide/pyodide/releases/tag/0.22.0a3), unzip them and use the `pyodide.js` file as your interpreter.
|
||||
|
||||
## Setting the runtime
|
||||
## Setting the interpreter
|
||||
|
||||
To set the runtime, you can use the `runtime` configuration in the `py-config` element. In this tutorial, we will use the default `TOML` format, but know that you can also use `json` if you prefer by changing the `type` attribute of the `py-config` element.
|
||||
To set the interpreter, you can use the `interpreter` configuration in the `py-config` element. In this tutorial, we will use the default `TOML` format, but know that you can also use `json` if you prefer by changing the `type` attribute of the `py-config` element.
|
||||
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
@@ -38,7 +38,7 @@ To set the runtime, you can use the `runtime` configuration in the `py-config` e
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
|
||||
<title>Runtime</title>
|
||||
<title>Interpreter</title>
|
||||
|
||||
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
|
||||
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
||||
@@ -46,7 +46,7 @@ To set the runtime, you can use the `runtime` configuration in the `py-config` e
|
||||
|
||||
<body>
|
||||
<py-config>
|
||||
[[runtimes]]
|
||||
[[interpreters]]
|
||||
src = "https://cdn.jsdelivr.net/pyodide/v0.22.0a3/full/pyodide.js"
|
||||
name = "pyodide-0.22.0a3"
|
||||
lang = "python"
|
||||
@@ -55,9 +55,9 @@ To set the runtime, you can use the `runtime` configuration in the `py-config` e
|
||||
</html>
|
||||
```
|
||||
|
||||
## Confirming the runtime version
|
||||
## Confirming the interpreter version
|
||||
|
||||
To confirm that the runtime is set correctly, you can open the DevTools and check the version from the console. But for the sake of this tutorial, let's create a `py-script` tag and print pyodide's version.
|
||||
To confirm that the interpreter is set correctly, you can open the DevTools and check the version from the console. But for the sake of this tutorial, let's create a `py-script` tag and print pyodide's version.
|
||||
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
@@ -66,7 +66,7 @@ To confirm that the runtime is set correctly, you can open the DevTools and chec
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
|
||||
<title>Runtime</title>
|
||||
<title>Interpreter</title>
|
||||
|
||||
<link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" />
|
||||
<script defer src="https://pyscript.net/latest/pyscript.js"></script>
|
||||
@@ -74,7 +74,7 @@ To confirm that the runtime is set correctly, you can open the DevTools and chec
|
||||
|
||||
<body>
|
||||
<py-config>
|
||||
[[runtimes]]
|
||||
[[interpreters]]
|
||||
src = "https://cdn.jsdelivr.net/pyodide/v0.22.0a3/full/pyodide.js"
|
||||
name = "pyodide-0.22.0a3"
|
||||
lang = "python"
|
||||
Reference in New Issue
Block a user