本文整理汇总了Python中activity.Activity.description方法的典型用法代码示例。如果您正苦于以下问题:Python Activity.description方法的具体用法?Python Activity.description怎么用?Python Activity.description使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类activity.Activity
的用法示例。
在下文中一共展示了Activity.description方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: readFile
# 需要导入模块: from activity import Activity [as 别名]
# 或者: from activity.Activity import description [as 别名]
from activity import Activity, TagError
filename = os.getenv('HOME')+"/.activity"
partition = os.getenv('HOME')+"/.activity-partition"
if __name__ == '__main__':
now = dt.datetime.now()
w = readFile (filename, partition)
if len(w) == 0:
raise RuntimeError(".activity file is empty.")
aOld = w[-1]
if aOld.endTime:
#No pending activity, resume lattest one
aNew = Activity()
aNew.startTime = now
aNew.description = aOld.description
aNew.instanceTags = aOld.instanceTags
print ("Resume %s" % aNew.description)
else:
aOld.endTime = now
print ("Finished: %s" % aOld.description)
print ("Previous activities:")
for a in w[-3:]:
print a
print "Starting new activity."
aNew = Activity()
aNew.startTime = now
print "Please write description:"
aNew.description = sys.stdin.readline()[:-1]
tagInput = True
print "Do you want to add a tag ? (y/n) "
示例2: readFile
# 需要导入模块: from activity import Activity [as 别名]
# 或者: from activity.Activity import description [as 别名]
if __name__ == '__main__':
w = readFile (filename, partition)
if len(w) > 0 and w[-1].endTime == None :
a = w[-1]
a.endTime = dt.datetime.now()
print ("Finished: %s" % a.description)
else:
if len(w) > 0:
print ("Previous activities:")
for a in w[-3:]:
print a
print "Starting new activity."
a = Activity()
print "Please write description:"
a.description = sys.stdin.readline()[:-1]
tagInput = True
print "Do you want to add a tag ? (y/n) "
while sys.stdin.readline() == 'y\n':
tag = sys.stdin.readline()[:-1]
try :
a.addTag(tag)
except TagError as exc:
print "This tag is new. Confirm ? (y/n)"
if sys.stdin.readline() == 'y\n':
a.addNewTag(tag)
print "Do you want to add a tag ? (y/n) "
w.add(a)
w.write(filename)
time.sleep(2.)