1 Star 0 Fork 1

andrew/Chatbot_Web

forked from 夏周睿/Chatbot_Web 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
render.py 679 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xu 提交于 2020-05-01 11:41 . readme
import os
from jinja2 import Template
def render(input_file, output_file):
with open(input_file, encoding='utf_8') as input_fd, open(output_file, mode='w', encoding='utf_8') as output_fd:
template = Template(input_fd.read())
# server_url = os.environ.get('CORE_SERVER_URL', 'http://nlp-server-api.souche-inc.com/webhooks/rest/webhook')
server_url = os.environ.get('CORE_SERVER_URL', 'http://172.18.86.20:5005/')
print("Will connect to {}".format(server_url))
rendered_string = template.render(server_url=server_url)
output_fd.write(rendered_string)
if __name__ == "__main__":
render('index.html.tpl', 'index.html')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/andrew-2020/Chatbot_Web.git
git@gitee.com:andrew-2020/Chatbot_Web.git
andrew-2020
Chatbot_Web
Chatbot_Web
master

搜索帮助