Spaces:
Sleeping
Sleeping
File size: 824 Bytes
9d3162f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
<py-config>
- autoclose_loader: true
- runtimes:
- src: "https://cdn.jsdelivr.net/pyodide/dev/full/pyodide.js"
name: pyodide-dev
lang: python
</py-config>
<py-env>
- opencv-python
- websockets
</py-env>
</head>
<body>
<p>This is an example of a simple HTML page with one paragraph.</p>
</body>
<py-script>
print(“This is Python!”)
</py-script>
<script>
console.log("This is JavaScript!")
</script>
</html>
|