mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-12 04:01:05 -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>
49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
<html><head>
|
|
<title>Bokeh Example</title>
|
|
<meta charset="iso-8859-1">
|
|
<link rel="icon" type="image/x-icon" href="./favicon.png">
|
|
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-2.4.2.min.js"></script>
|
|
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.4.2.min.js"></script>
|
|
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.2.min.js"></script>
|
|
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.2.min.js"></script>
|
|
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-mathjax-2.4.2.min.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
Bokeh.set_log_level("info");
|
|
</script>
|
|
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
|
|
|
|
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<py-env>
|
|
- bokeh
|
|
- numpy
|
|
</py-env>
|
|
<h1>Bokeh Example</h1>
|
|
<div id="myplot"></div>
|
|
|
|
<py-script id="main">
|
|
import json
|
|
import pyodide
|
|
|
|
from js import Bokeh, console, JSON
|
|
|
|
from bokeh.embed import json_item
|
|
from bokeh.plotting import figure
|
|
from bokeh.resources import CDN
|
|
|
|
# create a new plot with default tools, using figure
|
|
p = figure(plot_width=400, plot_height=400)
|
|
|
|
# add a circle renderer with x and y coordinates, size, color, and alpha
|
|
p.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], size=15, line_color="navy", fill_color="orange", fill_alpha=0.5)
|
|
p_json = json.dumps(json_item(p, "myplot"))
|
|
|
|
Bokeh.embed.embed_item(JSON.parse(p_json))
|
|
</py-script>
|
|
|
|
</body>
|
|
</html>
|