2 Star 4 Fork 3

ni1o1/echartsexamples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.py 307 Bytes
一键复制 编辑 原始数据 按行查看 历史
余庆 提交于 2021-11-06 16:01 . test
from flask import Flask,render_template
app = Flask(__name__,
static_folder = '',
template_folder = '')
@app.route('/')
def hello_world():
return render_template('3dbuildings.html')
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple('127.0.0.1', 8080, app)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ni1o1/echartsexamples.git
git@gitee.com:ni1o1/echartsexamples.git
ni1o1
echartsexamples
echartsexamples
main

搜索帮助