sleep()函数(python)

时间:2011-04-12 00:12:17

标签: python sockets function sleep irc

  if data.find('!google') != -1:
     nick = data.split('!')[ 0 ].replace(':','')
     try:
       gs = GoogleSearch(args)
       gs.results_per_page = 1
       results = gs.get_results()
       for res in results:
         sck.send('PRIVMSG ' + chan + " " + res.title.encode("utf8") + '\r\n')
         sck.send('PRIVMSG ' + chan + " " + res.url.encode("utf8") + '\r\n')
         print
     except SearchError, e:
       sck.send('PRIVMSG ' + chan + " " + "Search failed: %s" % e + " " + '\r\n')

好的我正试图让脚本等待几秒钟,然后另一个用户可以“!google”以防止用户充斥频道或机器人,不确定我是否应该使用sleep()函数,因为这可能会停止整个剧本,我只是想让它等几秒钟才能再次使用“!google”。

1 个答案:

答案 0 :(得分:2)

sleep function内有time module

但是,要使脚本不被阻止,您可以调用time function中的time module并存储该脚本。如果当前时间小于加,例如五秒,则不允许他们使用它。

例如:

last_google = 0
# somewhere later in the script where last_google is still in scope...
if data.find('!google') != -1:
    if last_google + 5 < time.time():
        # throttled
        return
    last_google = time.time()
    # do something here