Here's an example of a Pyscript implementation that doesn't use JS.
Try it : https://watchakorn-18k.github.io/Pure-Python-Non-Js-With-Pyscript/
Pure Python Non Js With Pyscript
We make an effort to build an app website without JS, to say the least. But actually we just change the format to use. The modules available in pyodide are based on JS commands on python.
Using javascript, just import pyscript and tailwindcss and daisyui
Install
git clone https://github.com/watchakorn-18k/Pure-Python-Non-Js-With-Pyscript
cd Pure-Python-Non-Js-With-Pyscript
Run
- Open File
index.html
or Open Link
Tree File
│ config.toml
│ icon.png
│ index.html
│ README.md
│
├───.vscode
│ settings.json
│
├───components
│ ascii.html
│ ascii.py
│ binance_price.html
│ binance_price.py
│ clock.html
│ clock.py
│ index.html
│ index.py
│ input_app.html
│ input_app.py
│ layouts.py
│
├───css
│ pyscript.css
│
└───js
pyscript.js
Example
Input App : Example of creating a form to receive data from the client
Clock : An example of making a real-time display clock
Binance Price : This is an example of retrieving data with an API without using JavaScript.
ASCII : An example of an ASCII transformation that uses Python's built-in function chr()
with ord()
to demonstrate Python's capabilities.
Falling Snow : An example of creating snow falling from the sky using basic python, either map() or using dict instead of array in JS by reference from PasaComputer - Falling Snow | JavaScript 21 Days Challenge EP. 1 | สอน JavaScript เรียนรู้จากการลงมือทำ
SOURCE : https://github.com/watchakorn-18k/Pure-Python-Non-Js-With-Pyscript
Top comments (1)
Interesting approaches