2 Star 0 Fork 0

久樊/Vscan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
reporter.py 514 Bytes
一键复制 编辑 原始数据 按行查看 历史
久樊 提交于 2022-12-08 15:07 . 12/8
from jinja2 import Template
import datetime
import config
def generate_report(data, report_name=str(datetime.datetime.now().date())):
path = config.report_path
if path[-1] != '/':
path += '/' + report_name
else:
path += report_name
file = open('report/template.html', 'r', encoding='utf8')
template = Template(file.read())
report = open(path + '.html', 'w', encoding='utf8')
report.write(template.render(data=data))
file.close()
report.close()
return path
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lamithe/vscan.git
git@gitee.com:lamithe/vscan.git
lamithe
vscan
Vscan
master

搜索帮助