使用dict的pushover中的python肯定

时间:2016-02-14 06:37:16

标签: python python-2.7 dictionary pushover

我也很难尝试使用python从pushover获得确认。

在我的脚本中,我使用dict将相同的消息发送给2个人,并在消息被确认后记录。 我这样做的原因而不是群体中的原因是因为如果一个人承认它会取消休息的呼叫,所以如果一个人看到并确认而另一个人没有,那么警报就会停止基。

到目前为止,我的代码将为两个uid发送消息,但一旦确认

就不会打印
import time
import requests
import datetime
dict = {'u56pt7jQXxgmtGnX5MBgsnUz4kgqKS': 'User1', 'uoREW3cuvy3SbSnyc7Ra737nVbrBQh': 'user2'}
app = "app id"
for k in dict:
        user = k
        params = {
        'token': app,
        'user': user,
        'title': 'lala',
        'message': 'test',
        'retry': 300, 
        'expire': 40,
        'priority': 2 ,
        'sound': 'siren',
        }
        msg = requests.post('https://api.pushover.net/1/messages.json', data=params)
        print "POSTed message to " + k
        json_data = msg.json()
        print json_data['receipt']
        time.sleep(5)
        d = json_data['receipt']
        v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
        out = v.json()
while out['acknowledged'] is 0:
 print "not yet" #placed for debugging
 time.sleep(5)
 v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
if out['acknowledged'] is 1:
 ack = out['acknowledged_by']
 for k in dict:
  if ack in k:
   acked = dict[k]
   t = datetime.datetime.strftime(datetime.datetime.now(), '%H:%M')
   print (acked + " acknowledged at " + t)

更新

使用下面提供的代码现在重新检查while语句,但仍然只确认第二个dict条目。

查看代码我相信

v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)

只检查第二个dict条目而不是两个。

1 个答案:

答案 0 :(得分:1)

在你的第一个测试循环中

while out['acknowledged'] is 0:
    print "not yet" #placed for debugging
    time.sleep(5)
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json() #update the out, so you can check again

在第二部分中,您需要将其转换为循环,在每个人都做出确认后终止

if out['acknowledged'] is 1:
    while not all_acknowledged(dict): # custom function to check whether all users have made an acknowledgement 
        ack = out['acknowledged_by']
        for k in dict:
            if ack in k:
                acked = dict[k]
                dict[k]['ack'] = True #We must update this when we come across an acknowledged user
                t = datetime.datetime.strftime(datetime.datetime.now(), '%H:%M')
                print (acked + " acknowledged at " + t)
        v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
        out = v.json() #update the out, so you can check again

要收集每个人的确认,您需要在您的dict中为每个用户提供一个额外的条目,用于确认该用户是否确认,或者需要另一个数据结构来跟踪所有确认(对于任意多个用户)。

for k in dict:
    user = k
    params = {
    'token': app,
    'user': user,
    'title': 'lala',
    'message': 'test',
    'retry': 300, 
    'expire': 40,
    'priority': 2 ,
    'sound': 'siren',
    'ack': False
    }

添加ack字段后,我们可以在第二个循环中更新它并创建函数,所以

def all_acknowledged(dict):
    for k in dict:
        if not dict[k]['ack']:
            return False
    return True

所以,最后我们会有这个:

import time
import requests
import datetime
dict = {'u56pt7jQXxgmtGnX5MBgsnUz4kgqKS': 'User1', 'uoREW3cuvy3SbSnyc7Ra737nVbrBQh': 'user2'}
app = "app id"
for k in dict:
    user = k
    params = {
    'token': app,
    'user': user,
    'title': 'lala',
    'message': 'test',
    'retry': 300, 
    'expire': 40,
    'priority': 2 ,
    'sound': 'siren',
    'ack': False
    }
    msg = requests.post('https://api.pushover.net/1/messages.json', data=params)
    print "POSTed message to " + dict[k]
    json_data = msg.json()
    print json_data['receipt']
    time.sleep(5)
    d = json_data['receipt']
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json()
while out['acknowledged'] is 0:
    print "not yet" #placed for debugging
    time.sleep(5)
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json() #update the out, so you can check again

def all_acknowledged(dict):
    for user in params:
        if not params['ack']:
            return False
    return True

# Line below is commented out because if we got this far we have at least one acknowledgement 
# if out['acknowledged'] is 1: 
while not all_acknowledged(dict): # custom function to check whether all users have made an acknowledgement 
    ack = out['acknowledged_by']
    for k in dict:
        if ack in k:
            acked = dict[k]
            params['ack'] = True # We must update this when we come across an acknowledged user
            t = datetime.datetime.strftime(datetime.datetime.now(), '%H:%M')
            print (acked + " acknowledged at " + t)
    v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
    out = v.json() #update the out, so you can check again