mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* Fix #2155 - Allow editor.process to run on behalf of users * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Updated dev/dependendencies --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
16 lines
377 B
HTML
16 lines
377 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="../../dist/core.css">
|
|
<script type="module" src="../../dist/core.js"></script>
|
|
</head>
|
|
<body>
|
|
<script type="py-editor" id="editor">
|
|
import sys
|
|
print(sys.version)
|
|
</script>
|
|
<script type="py" src="submit.py"></script>
|
|
<button py-click="submit">Submit</button>
|
|
</body>
|
|
</html>
|