當前位置: 首頁>>代碼示例>>Python>>正文


Python GrowlNotifier._checkIcon方法代碼示例

本文整理匯總了Python中gntp.notifier.GrowlNotifier._checkIcon方法的典型用法代碼示例。如果您正苦於以下問題:Python GrowlNotifier._checkIcon方法的具體用法?Python GrowlNotifier._checkIcon怎麽用?Python GrowlNotifier._checkIcon使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gntp.notifier.GrowlNotifier的用法示例。


在下文中一共展示了GrowlNotifier._checkIcon方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: main

# 需要導入模塊: from gntp.notifier import GrowlNotifier [as 別名]
# 或者: from gntp.notifier.GrowlNotifier import _checkIcon [as 別名]
def main():
	(options, message) = ClientParser().parse_args()
	logging.basicConfig(level=options.verbose)
	if not os.path.exists(DEFAULT_CONFIG):
		logging.info('No config read found at %s', DEFAULT_CONFIG)

	growl = GrowlNotifier(
		applicationName=options.app,
		notifications=[options.name],
		defaultNotifications=[options.name],
		hostname=options.host,
		password=options.password,
		port=options.port,
	)
	result = growl.register()
	if result is not True:
		exit(result)

	# This would likely be better placed within the growl notifier
	# class but until I make _checkIcon smarter this is "easier"
	if options.icon and growl._checkIcon(options.icon) is False:
		logging.info('Loading image %s', options.icon)
		f = open(options.icon, 'rb')
		options.icon = f.read()
		f.close()

	result = growl.notify(
		noteType=options.name,
		title=options.title,
		description=message,
		icon=options.icon,
		sticky=options.sticky,
		priority=options.priority,
		callback=options.callback,
		identifier=options.identifier,
	)
	if result is not True:
		exit(result)
開發者ID:h3llrais3r,項目名稱:Auto-Subliminal,代碼行數:40,代碼來源:cli.py


注:本文中的gntp.notifier.GrowlNotifier._checkIcon方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。