mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* replace unnecessary elements from hello_world example and replace with py-tutor tag * add py_tutor plugin * port altair example * add code for more granular tutor mode * add support for including modules source in pytutor * remove js dependencies in hello_world * put antigravity on a diet ;) * use py-tutor on antigravity example * use py-tutor on d3 example * use py-tutor on bokeh example * use py-tutor on bokeh_interactive example * fix issue when module_paths is undefined * remove prism js dependency leftovers * ooops, really remove prism js dependency leftovers * port follium example to pytutor * port pymarkdown and matplotlib example to pytutor * port message_passing and numpy_convas_fractals examples to pytutor * port the panel complex examples to pytutor * port the panel complex examples to pytutor * port last examples to py-tutor * remove prism * remore most debugging logs and replace log with info * add new d3.py file * add comments to connect method * clean pyscript class from logs * revert class pySrc attribute * add check_tutor_generated_code to test code inspector plugin in examples * add doctsting to PyTutor connect * add check for tutor code inspection on all examples * Update pyscriptjs/src/plugins/python/py_tutor.py fix template indentation Co-authored-by: Fábio Rosado <fabioglrosado@gmail.com> * Update examples/todo-pylist.html fix typo (stray = ) Co-authored-by: Fábio Rosado <fabioglrosado@gmail.com> * fix pymarkdown example Co-authored-by: Fabio Pliger <fpliger@anaconda.com> Co-authored-by: Fábio Rosado <fabioglrosado@gmail.com>
65 lines
1.3 KiB
Python
65 lines
1.3 KiB
Python
import js
|
|
from pyodide.ffi import create_proxy, to_js
|
|
|
|
d3 = js.d3
|
|
|
|
fruits = [
|
|
{"name": "🍊", "count": 21},
|
|
{"name": "🍇", "count": 13},
|
|
{"name": "🍏", "count": 8},
|
|
{"name": "🍌", "count": 5},
|
|
{"name": "🍐", "count": 3},
|
|
{"name": "🍋", "count": 2},
|
|
{"name": "🍎", "count": 1},
|
|
{"name": "🍉", "count": 1},
|
|
]
|
|
|
|
fn = create_proxy(lambda d, *_: d["count"])
|
|
data = d3.pie().value(fn)(to_js(fruits))
|
|
|
|
arc = (
|
|
d3.arc()
|
|
.innerRadius(210)
|
|
.outerRadius(310)
|
|
.padRadius(300)
|
|
.padAngle(2 / 300)
|
|
.cornerRadius(8)
|
|
)
|
|
|
|
py = d3.select("#py")
|
|
py.select(".loading").remove()
|
|
|
|
svg = (
|
|
py.append("svg")
|
|
.attr("viewBox", "-320 -320 640 640")
|
|
.attr("width", "400")
|
|
.attr("height", "400")
|
|
)
|
|
|
|
for d in data:
|
|
d_py = d.to_py()
|
|
|
|
(svg.append("path").style("fill", "steelblue").attr("d", arc(d)))
|
|
|
|
text = (
|
|
svg.append("text")
|
|
.style("fill", "white")
|
|
.attr("transform", f"translate({arc.centroid(d).join(',')})")
|
|
.attr("text-anchor", "middle")
|
|
)
|
|
|
|
(
|
|
text.append("tspan")
|
|
.style("font-size", "24")
|
|
.attr("x", "0")
|
|
.text(d_py["data"]["name"])
|
|
)
|
|
|
|
(
|
|
text.append("tspan")
|
|
.style("font-size", "18")
|
|
.attr("x", "0")
|
|
.attr("dy", "1.3em")
|
|
.text(d_py["value"])
|
|
)
|