找个文件夹直接建一个 index.html,然后在 index.html 的文件夹里的地址栏里输入 cmd 开终端,然后输入`python -m http.server 80`,然后就内网就可以通过
192.168.0.XXX/127.0.0.1 可以访问你的机子这个目录的 index.html 了。
如果可以的话,直接在 index.html 直接写逻辑就完事了,如果实在不会写 js,就在该文件夹建立一个 cgi-bin 文件夹及内部再建立一个
clean.py 的文件,可以通过浏览器的首页访问也可以直接通过`127.0.0.1/cgi-bin/
clean.py?input=转换内容`来执行 python 脚本。
目录结构:
--index.html
--cgi-bin
----
clean.py```index.html
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<textarea id=input_data placeholder=输入></textarea>
<div><button type=button onclick='exec_in_py.location.href = "cgi-bin/
helloworld.py?input=" + document.getElementById("input_data").value'>洗数据</button>
</div>
<iframe name=exec_in_py></iframe>
```
```cgi-bin/
clean.pyimport cgi
print('Content-Type: text/plain\n')
# 获取输入值
inp = cgi.FieldStorage()['input'].value
# py 写清洗数据的逻辑,只要改这里就得了
inp += '\nby_py'
# 输出到页面
print(inp)
```
更复杂的还是上框架吧