我刚开始使用Python,我的第一个脚本之一是一个非常简单的工作日志。 我运行它,当我完成工作时我按下回车键,它将工作时间放入html文件中,我与雇用我的人分享。
这是代码,请不要太过分,这些是我的第一步:
#!/usr/bin/python
import datetime
start = datetime.datetime.now()
startt = str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
print "Counting worktime started."
confirm = raw_input("Press enter when work finished ")
finish = datetime.datetime.now()
delta = finish - start
print datetime.datetime.now()
print delta.seconds
work_time=str(datetime.timedelta(seconds=delta.seconds))
finisht=str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
note = raw_input("What were you doing? ")
line1=['<span>','Work started: <b>', startt, '</b></span><br />']
line1f=' '.join(line1)
line2=['<span>','Work ended: <b>', finisht, '</b></span><br />']
line2f=' '.join(line2)
line3=['<span>','Work duration: <b>', work_time,'</b></span><br />']
line3f=' '.join(line3)
line4=['<span>','Note: <b>', note,'</b></span><br /><br />']
line4f=' '.join(line4)
with open("/srv/www/worklog.html","a") as worklog:
worklog.write(line1f)
worklog.write("\n")
worklog.write(line2f)
worklog.write("\n")
worklog.write(line3f)
worklog.write("\n")
worklog.write(line4f)
worklog.write("\n")
worklog.write("<span> ========================= </span><br /><br />")
worklog.write("\n")
这是worklog.html文件:
<html>
<head></head>
<body style="background-color: #195B83;color:#FFF;margin: 0px;">
<style>
span {font-size: 12px;margin-left: 5px;}
.logo {float: right;margin-right: 10px;margin-top:5px;}
.first-div {background-color: #FFF; color:#195B83;width:100%;}
.sec-div {margin-left: 5px;}
</style>
<div class="first-div">
<img src="logo.png" class="logo" />
<div class="sec-div">
<h1>simple worklog 1.0</h2>
</div>
</div>
<br />
<span> ========================= </span><br /><br />
<span> Work started: <b> 2014-09-11 13:40:26 </b></span> <br />
<span> Work ended: <b> 2014-09-11 13:40:29 </b></span> <br />
<span> Work duration: <b> 0:00:02 </b></span> <br />
<span> Note: <b> Testing </b></span><br /><br />
<span> ========================= </span><br /><br />
它有效!
我的问题是 - 如何包含
</body></html>
标签?我尝试使用.replace,但是我的实验在整个文件被清除时失败了。你能否告诉我如何使这个脚本保持在worklog.html的末尾?
编辑:
感谢下面的精彩提示,我已经重写了代码,我认为现在它有了更多的意义,你可以在这里找到它:
main_script(将日志添加到csv并向网站添加数据):http://pastebin.com/ZbCqJ9p9
page_refresher(没有添加工作日志,只是将数据放在网站上):http://pastebin.com/3hi077RK
模板(使用bootstrap css):http://pastebin.com/xZ7VmE1U
数据文件格式:http://pastebin.com/0KNAXuqh
它看起来像是:http://elysium.c-call.eu/sworklog/
它肯定不是最高等级的并且有一些问题,但它比我来这里的废话要好得多:)
非常感谢。
答案 0 :(得分:4)
我认为更清洁的解决方案是略微改变您的流程。
您应该考虑将数据(开始时间和结束时间)存储到CSV文件(或文本文件,SQLite数据库或任何您想要的内容)中,而不是直接记录到HTML文件。 Python为a built-in library for working with CSV files。
然后,您可以运行另一个脚本来获取数据,处理数据并生成HTML页面。由于您每次都会重新创建HTML页面,因此您不必费心在HTML中的正确位置插入新数据。
将数据与演示文稿分开是一种很好的做法,因为它可以更轻松地在各个地方重用数据。在此示例中,如果您将数据保存在CSV文件中,您还可以使用电子表格应用程序打开它,并为您的雇主制作精美的图表和图表;)
答案 1 :(得分:2)
不要通过使用字符串连接手动构建HTML
来重新发明轮子。这使得事情变得不那么可读,明确,更复杂,难以维护,容易出错。有专门的工具,可以使它更容易和愉快。
基本上,您将使用占位符创建HTML模板,在渲染时将使用占位符填充数据。
使用mako
模板引擎的示例。
考虑您有一个名为template.html
的模板,其中包含以下内容:
<!DOCTYPE html>
<html>
<head>
<title>${title}</title>
</head>
<body>
<span>
Work started: ${work_time}
</span>
</body>
</html>
这就是渲染代码的样子:
from datetime import date
from mako.template import Template
template = Template(filename='template.html')
title = 'Test page'
work_time = date.today()
print template.render(title=title, work_time=work_time)
打印:
<!DOCTYPE html>
<html>
<head>
<title>Test page</title>
</head>
<body>
<span>
Work started: 2014-09-11
</span>
</body>
</html>
或者,您也可以在Python代码中按标签构建HTML标记。
使用BeautifulSoup
的示例:
from bs4 import BeautifulSoup
soup = BeautifulSoup()
html = soup.new_tag(name='html')
body = soup.new_tag(name='body')
span = soup.new_tag(name="span")
span.append(soup.new_string('Work started:'))
body.append(span)
html.append(body)
soup.append(html)
print soup.prettify()
打印:
<html>
<body>
<span>
Work started:
</span>
</body>
</html>