当前位置: 首页>>代码示例>>Python>>正文


Python PushBullet.getContacts方法代码示例

本文整理汇总了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"]))
开发者ID:zag2k,项目名称:RPiTest,代码行数:31,代码来源:pushtest.py


注:本文中的pushbullet.PushBullet.getContacts方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。