这是不使用JS的Pyscript实现的示例。
尝试:https://watchakorn-18k.github.io/Pure-Python-Non-Js-With-Pyscript/
纯Python Non Js带有Pyscript
至少可以说,我们努力构建一个没有JS的应用网站。但是实际上,我们只是更改要使用的格式。 Pyodide中可用的模块基于Python上的JS命令。
使用javascript,只需导入pyscript和tailwindcss和daisyui
安装
git clone https://github.com/watchakorn-18k/Pure-Python-Non-Js-With-Pyscript
cd Pure-Python-Non-Js-With-Pyscript
跑
- Open File
index.html
or Open Link
树文件
│ 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
例子
Input App:创建表单以从客户端接收数据的示例
Clock:制作实时显示时钟的示例
Binance Price:这是在不使用JavaScript的情况下检索数据的一个示例。
ASCII:ASCII转换的示例,该转换使用Python的内置函数chr()
与ord()
一起演示Python的功能。
Falling Snow:使用基本的python,map()或使用dict而不是dice而不是js中的dict降雪的示例
来源:https://github.com/watchakorn-18k/Pure-Python-Non-Js-With-Pyscript