mirror of
https://github.com/pyscript/pyscript.git
synced 2022-05-01 19:47:48 +03:00
23 lines
616 B
HTML
23 lines
616 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- <link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css"> -->
|
|
<script src="https://cdn.jsdelivr.net/pyodide/v0.19.0/full/pyodide.js"></script>
|
|
<link rel="stylesheet" media="all" href="pyscript1.css">
|
|
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.52.2/codemirror.min.css">
|
|
</link>
|
|
|
|
<script type="text/javascript"
|
|
src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.52.2/codemirror.min.js">
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<py-script>
|
|
sum([1, 2, 3, 4, 5])
|
|
</py-script>
|
|
</body>
|
|
</html>
|