本文整理汇总了Python中pushbullet.PushBullet.getContacts方法的典型用法代码示例。如果您正苦于以下问题:Python PushBullet.getContacts方法的具体用法?Python PushBullet.getContacts怎么用?Python PushBullet.getContacts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pushbullet.PushBullet
的用法示例。
在下文中一共展示了PushBullet.getContacts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: PushBullet
# 需要导入模块: from pushbullet import PushBullet [as 别名]
# 或者: from pushbullet.PushBullet import getContacts [as 别名]
import sys
import json
import os
from pushbullet import PushBullet
from requests.exceptions import HTTPError
if __name__ == '__main__':
p = PushBullet("L0Wtxg0coFfVW4majBbORq3sS3xkQmTF")
devices = p.getDevices()
# Get a list of contacts
contacts = p.getContacts()
# Send a note
#p.pushNote(devices[0]["iden"], 'Hello world', 'Test body')
p.pushFile(devices[0]["iden"], "take-photo-test5.jpg", "This is a test file", open("/home/pi/RPiWebCam/Test/take-photo-test5.jpg", "rb"))
#note = p.pushNote(args.device, args.title, " ".join(args.body))
#if args.json:
# print(json.dumps(note))
# return
#if args.device and args.device[0] == '#':
# print("Note broadcast to channel %s" % (args.device))
#elif not args.device:
# print("Note %s sent to all devices" % (note["iden"]))
#else:
# print("Note %s sent to %s" % (note["iden"], note["target_device_iden"]))