输入时间并将其与用户输入进行比较

时间:2011-08-12 11:36:33

标签: python datetime time input compare

我正在尝试在用户给定的特定时间内在Python脚本中运行函数。要做到这一点,我正在使用datetime模块。

到目前为止,这是代码的一部分:

import os
import subprocess
import shutil
import datetime
import time

def process():

    path = os.getcwd()
    outdir = os.getcwd() + '\Output'

    if not os.path.exists(outdir):
        os.mkdir(outdir, 0777)

    for (root, dirs, files) in os.walk(path):
        filesArr = []
        dirname = os.path.basename(root)
        parent_dir = os.path.basename(path)

        if parent_dir == dirname:
            outfile = os.path.join(outdir,  ' ' + dirname + '.pdf')
        else:
            outfile = os.path.join(outdir, parent_dir + ' ' + dirname + '.pdf')

        print " "
        print 'Processing: ' + path

        for filename in files:
            if root == outdir:
                continue
            if filename.endswith('.pdf'):
                full_name = os.path.join(root, filename)
                if full_name != outfile:
                    filesArr.append('"' + full_name + '"')

        if filesArr:
            cmd = 'pdftk ' + ' '.join(filesArr) + ' cat output "' + outfile + '"'
            print " "
            print 'Merging: ' + str(filesArr)

            print " "

            sp = subprocess.Popen(cmd)

            print "Finished merging documents successfully."

            sp.wait()

    return

now = datetime.datetime.now()
hour = str(now.hour)
minute = str(now.minute)
seconds = str(now.second)
time_1 = hour + ":" + minute + ":" + seconds

print "Current time is: "  + time_1

while True:
     time_input = raw_input("Please enter the time in HH:MM:SS format: ")

     try:
        selected_time = time.strptime(time_input, "%H:%M:%S")
        print "Time selected: " + str(selected_time)

        while True:
            if (selected_time == time.localtime()):
             print "Beginning merging process..."
             process()
             break
             time.sleep(5)

        break

     except ValueError:
        print "The time you entered is incorrect. Try again."

问题在于试图找到一种方法来比较用户输入的时间和当前时间(例如,脚本运行时的当前时间)。另外,如何在给定时间运行python脚本并处理函数?

2 个答案:

答案 0 :(得分:0)

我可以在您建议的代码中看到要评论的各种内容,但主要内容是selected_time = selected_hour + ...,因为我认为您正在添加具有不同单位的整数。您应该从selected_time = selected_hour * 3600 + ...开始。

第二个是当您尝试检查输入的有效性时:在支票上创建while无法进化,因为不要求用户输入其他值。这意味着这些循环永远不会结束。

然后,关于健壮性的事情:也许您应该通过更灵活的方式将所选时间与当前时间进行比较,即将==替换为>=或使用某些增量。

最后,您可以使用以下命令使Python脚本等待:

import time
time.sleep(some_duration)

其中some_duration是一个浮点数,意思是秒。

请您检查一下现在是否有效?

答案 1 :(得分:0)

首先我建议你看一下:http://docs.python.org/library/time.html#time.strptime 在尝试验证时间时,这可能会对您的情况有所帮助。

你可以这样: 进口时间

import time

while True: #Infinite loop        
    time_input = raw_input("Please enter the time in HH:MM:SS format: ")
    try:
        current_date = time.strftime("%Y %m %d")
        my_time = time.strptime("%s %s" % (current_date, time_input),
                             "%Y %m %d  %H:%M:%S")
        break #this will stop the loop
    except ValueError:
        print "The time you entered is incorrect. Try again."

现在,您可以使用my_time进行比较,例如:my_time == time.localtime()

让程序运行直到'时间到了'的最简单方法如下:

import time

while True:
    if (my_time <= time.localtime()):
        print "Running process"
        process()
        break
    time.sleep(1) #Sleep for 1 second

以上示例绝不是最佳解决方案,但在我看来最容易实现。

此外,我建议您尽可能使用http://docs.python.org/library/subprocess.html#subprocess.check_call执行命令。