Skip to content

Fix the bullet point indentation on the examples page. #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 25 additions & 43 deletions docs/examples.md
Original file line number Diff line number Diff line change
@@ -8,72 +8,54 @@ The examples are (links take you to the code):
### Simple:

* [Hello world](https://pyscript.com/@examples/hello-world/latest)
* uses included datetime module. No additional packages.
* uses included datetime module. No additional packages.
* [WebGL Icosahedron](https://pyscript.com/@examples/webgl-icosahedron/latest)
* uses [three.js](https://threejs.org/) imported as a module in toml)
* uses [three.js](https://threejs.org/) imported as a module in toml)
* [Pandas dataframe fun](https://pyscript.com/@examples/pandas/latest)
* uses [pandas](https://pandas.pydata.org/) from pypi
* pyodide
* uses [pandas](https://pandas.pydata.org/) from pypi
* [Matplotlib example](https://pyscript.com/@examples/matplotlib/latest)
* uses [matplotlib](https://matplotlib.org/)
* pyodide
* uses [matplotlib](https://matplotlib.org/)
* [Todo](https://pyscript.com/@examples/todo-app/latest)
* uses pyweb. No additional packages.
* pyodide
* uses pyweb. No additional packages.
* [Tic Tac Toe](https://pyscript.com/@examples/tic-tac-toe/latest)
* uses pyweb. No additional packages.
* pyodide
* uses pyweb. No additional packages.
* [Pyscript Jokes](https://pyscript.com/@examples/pyscript-jokes/latest)
* uses pyweb and [pyjokes](https://pyjok.es/)
* pyodide
* uses pyweb and [pyjokes](https://pyjok.es/)
* [D3 visualization](https://pyscript.com/@examples/d3-visualization/latest)
* uses [d3](https://d3js.org/)
* mixes javascript code with python code. imports d3 from javascript.
* pyodide
* uses [d3](https://d3js.org/)
* mixes javascript code with python code. imports d3 from javascript.
* [Import antigravity](https://pyscript.com/@examples/antigravity/latest)
* uses svg simply
* pyodide
* uses svg simply
* [API proxy tutorial](https://pyscript.com/@examples/api-proxy-tutorial/latest)
* uses fetch
* pyodide
* uses fetch
* [API proxy and secrets tutorial](https://pyscript.com/@examples/api-proxy-and-secrets-tutorial/latest)
* uses fetch
* pyodide
* uses fetch

### More complex:

* [Numpy fractals](https://pyscript.com/@examples/fractals-with-numpy-and-canvas/latest)
* uses [numpy](https://numpy.org/), [sympy](https://www.sympy.org/en/index.html) from pypi
* pyodide
* uses [numpy](https://numpy.org/), [sympy](https://www.sympy.org/en/index.html) from pypi
* [Simple slider panel](https://pyscript.com/@examples/simple-panel/latest)
* uses [Panel](https://panel.holoviz.org/) and [Bokeh](https://bokeh.org/) from pypi and loads in index.html
* pyodide
* uses [Panel](https://panel.holoviz.org/) and [Bokeh](https://bokeh.org/) from pypi and loads in index.html
* [Streaming data panel](https://pyscript.com/@examples/streaming-in-panel/latest)
* uses [Panel](https://panel.holoviz.org/), [Bokeh](https://bokeh.org/) [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/) from pypi
* loads bokeh, panel, tabulator in index.html
* pyodide
* uses [Panel](https://panel.holoviz.org/), [Bokeh](https://bokeh.org/) [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/) from pypi
* loads bokeh, panel, tabulator in index.html
* [KMeans in a panel](https://pyscript.com/@examples/kmeans-in-panel/latest)
* uses [Bokeh](https://bokeh.org/), [altair](https://altair-viz.github.io/), [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/), [scikit-learn](https://scikit-learn.org/stable/), [Panel](https://panel.holoviz.org/) from pypi
* loads panel, bootstrap, vega, tabulator, bokeh in index.html
* pyodide
* loads panel, bootstrap, vega, tabulator, bokeh in index.html
* [New York Taxi panel (WebGL)](https://pyscript.com/@examples/nyc-taxi-panel-deckgl/latest)
* uses a mixture of pypi and direct load packages in index.html
* [Bokeh](https://bokeh.org/), [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/), [Panel](https://panel.holoviz.org/), [deck-gl](https://deck.gl/)
* deckGL, bokeh are loaded directly in index.html
* pyodide
* uses a mixture of pypi and direct load packages in index.html
* [Bokeh](https://bokeh.org/), [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/), [Panel](https://panel.holoviz.org/), [deck-gl](https://deck.gl/)
* deckGL, bokeh are loaded directly in index.html
* [Folium geographical data](https://pyscript.com/@examples/folium/latest)
* uses [folium](https://python-visualization.github.io/folium/latest/), [pandas](https://pandas.pydata.org/) from pypi
* pyodide
* uses [folium](https://python-visualization.github.io/folium/latest/), [pandas](https://pandas.pydata.org/) from pypi
* [Bokeh data plotting](https://pyscript.com/@examples/bokeh/latest)
* uses [pandas](https://pandas.pydata.org/), [Bokeh](https://bokeh.org/), [xyzservices](https://github.com/geopandas/xyzservices) from pypi
* pyodide
* uses [pandas](https://pandas.pydata.org/), [Bokeh](https://bokeh.org/), [xyzservices](https://github.com/geopandas/xyzservices) from pypi
* [Altair data plotting](https://pyscript.com/@examples/altair/latest)
* uses [altair](https://altair-viz.github.io/), [pandas](https://pandas.pydata.org/), [vega_datasets](https://github.com/altair-viz/vega_datasets) from pypi
* pyodide
* uses [altair](https://altair-viz.github.io/), [pandas](https://pandas.pydata.org/), [vega_datasets](https://github.com/altair-viz/vega_datasets) from pypi
* [Panel and hyplot](https://pyscript.com/@examples/panel-and-hvplot/latest)
* uses [Bokeh](https://bokeh.org/), [Panel](https://panel.holoviz.org/), [markdown-it-py](https://github.com/executablebooks/markdown-it-py), [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/), [hvplot](https://hvplot.holoviz.org/), [pyodide-http](https://pyodide.org/en/stable/usage/api/python-api/http.html) a fetch library.
* bokeh and panel are loaded in the index.html
* pyodide
* uses [Bokeh](https://bokeh.org/), [Panel](https://panel.holoviz.org/), [markdown-it-py](https://github.com/executablebooks/markdown-it-py), [numpy](https://numpy.org/), [pandas](https://pandas.pydata.org/), [hvplot](https://hvplot.holoviz.org/), [pyodide-http](https://pyodide.org/en/stable/usage/api/python-api/http.html) a fetch library.
* bokeh and panel are loaded in the index.html

Notes:
- No micropython examples - all are pyodide