python 使用字典确认 pushover
python acknowlage in pushover using dict
我也无法尝试使用 python 从 Pushover 获得确认。
在我的脚本中,我使用字典将相同的消息发送给 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 语句,但仍然只确认第二个字典条目。
查看代码我相信
v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
只检查第二个 dict 条目而不是两者。
在您的第一个测试循环中
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
要收集每个人的确认,您需要在您的字典中为每个用户添加一个额外条目,以保存该用户是否确认或另一个数据结构来跟踪所有确认(对于任意多个用户)。
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
我也无法尝试使用 python 从 Pushover 获得确认。
在我的脚本中,我使用字典将相同的消息发送给 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 语句,但仍然只确认第二个字典条目。
查看代码我相信
v = requests.get("https://api.pushover.net/1/receipts/"+ d + ".json?token=" + app)
只检查第二个 dict 条目而不是两者。
在您的第一个测试循环中
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
要收集每个人的确认,您需要在您的字典中为每个用户添加一个额外条目,以保存该用户是否确认或另一个数据结构来跟踪所有确认(对于任意多个用户)。
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