1 Star 0 Fork 2

现任明教教主-乾颐堂/qytang-eb-flask

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
application.py 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
现任明教教主-乾颐堂 提交于 2020-01-09 17:10 . 最终代码!
from flask import Flask, render_template
import os
import requests
# 默认目录为当前目录的templates
template_dir = os.path.abspath('./templates')
application = Flask(__name__, template_folder=template_dir)
@application.route('/')
def index():
instance_id = requests.get("http://169.254.169.254/latest/meta-data/instance-id").text
availability_zone = requests.get("http://169.254.169.254/latest/meta-data/placement/availability-zone").text
return render_template('index.html',
devnet_main='乾颐堂AWS测试',
instance_id = instance_id,
availability_zone = availability_zone,
active='首页')
if __name__ == '__main__':
application.debug = True
application.run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qytang/qytang-eb-flask.git
git@gitee.com:qytang/qytang-eb-flask.git
qytang
qytang-eb-flask
qytang-eb-flask
master

搜索帮助