mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* Move tests, create makefile action to run tests on examples * Correct import file for html files * Build environment for tests * Fix the CI * rearrange CI * fix find cmd and make sure we don't delete the folder implicitly * more rearranging * fix folder permissions and custom sed for subfolders * add toga wheels files * re-add missing file * mirror latest changes in alpha ci * fix find cmd * try different fix for find * remove redundant build Co-authored-by: mariana <marianameireles@protonmail.com> Co-authored-by: pww217 <pwilson@anaconda.com> Co-authored-by: Fabio Pliger <fabio.pliger@gmail.com>
51 lines
1.5 KiB
HTML
51 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Todo App</title>
|
|
|
|
<link rel="icon" type="image/png" href="favicon.png" />
|
|
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
|
|
|
|
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
|
|
<py-env>
|
|
- paths:
|
|
- ./utils.py
|
|
</py-env>
|
|
<py-register-widget src="./pylist.py" name="py-list" klass="PyList"></py-register-widget>
|
|
|
|
<py-script>
|
|
def add_task(*ags, **kws):
|
|
# create a new dictionary representing the new task
|
|
task = { "content": new_task_content.value, "done": False, "created_at": dt.now() }
|
|
|
|
# add a new task to the list and tell it to use the `content` key to show in the UI
|
|
# and to use the key `done` to sync the task status with a checkbox element in the UI
|
|
myList.add(task)
|
|
|
|
# clear the inputbox element used to create the new task
|
|
new_task_content.clear()
|
|
|
|
</py-script>
|
|
</head>
|
|
|
|
<body>
|
|
<py-title>To Do List</py-title>
|
|
<py-box widths="4/5;1/5">
|
|
<py-inputbox id="new-task-content">
|
|
def on_keypress(e):
|
|
if (e.code == "Enter"):
|
|
add_task()
|
|
</py-inputbox>
|
|
<py-button id="new-task-btn" label="Add Task!">
|
|
def on_click(evt):
|
|
add_task()
|
|
</py-button>
|
|
</py-box>
|
|
|
|
<py-list id="myList"></py-list>
|
|
<py-repl id="my-repl" auto-generate="true"> </py-repl>
|
|
</body>
|
|
</html>
|