本文整理汇总了Python中volttron.platform.agent.utils.vip_main函数的典型用法代码示例。如果您正苦于以下问题:Python vip_main函数的具体用法?Python vip_main怎么用?Python vip_main使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了vip_main函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.vip_main(volttronbridge)
except Exception as e:
print e
_log.exception('unhandled exception')
示例2: main
def main(argv=sys.argv):
"""Main method called by the aip."""
try:
utils.vip_main(EmailerAgent, identity="platform.emailer",
version = __version__)
except Exception as e:
_log.exception('unhandled exception')
示例3: main
def main(argv=sys.argv):
'''Main method called to start the agent.'''
utils.setup_logging()
try:
utils.vip_main(hello_agent)
except Exception:
_log.exception('unhandled exception')
示例4: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.vip_main(simpleforwarder, version=__version__)
except Exception as e:
print(e)
_log.exception('unhandled exception')
示例5: main
def main(argv=sys.argv):
"""Main method called by the aip."""
try:
utils.vip_main(ILCAgent)
except Exception as exception:
_log.exception("unhandled exception")
_log.error(repr(exception))
示例6: main
def main(argv=sys.argv):
"""Main method called by the aip."""
try:
utils.vip_main(historian, identity="nullhistorian")
except Exception as e:
print(e)
_log.exception('unhandled exception')
示例7: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.vip_main(schedule_example)
except Exception as e:
print e
_log.exception('unhandled exception')
示例8: main
def main(argv=sys.argv):
"""Main method called by the aip."""
try:
utils.vip_main(historian, version=__version__)
except Exception as e:
print(e)
_log.exception('unhandled exception')
示例9: main
def main(argv=sys.argv):
""" Main method called by the eggsecutable.
:param argv:
:return:
"""
utils.vip_main(VolttronCentralAgent, identity=VOLTTRON_CENTRAL,
version=__version__)
示例10: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.vip_main(smartstripgc)
except Exception as e:
print e
_log.exception('unhandled exception')
示例11: main
def main(argv=sys.argv):
'''Main method called by the eggsecutable.'''
try:
utils.vip_main(SMAPHistorianAgent)
except Exception as e:
_log.error(e)
_log.exception('unhandled exception')
示例12: main
def main(argv=sys.argv):
""" Main method called by the eggsecutable.
:param argv:
:return:
"""
# utils.vip_main(platform_agent)
utils.vip_main(VolttronCentralPlatform)
示例13: main
def main():
"""" Main entry point for the agent."""
try:
utils.vip_main(weather_agent, version=__version__)
except Exception as e:
print(e)
_log.exception('unhandled exception')
示例14: main
def main(argv=sys.argv):
'''Main method called by the aip.'''
try:
utils.vip_main(historian)
except Exception as e:
print(e)
_log.exception('unhandled exception')
示例15: main
def main(argv=sys.argv):
"""Main method called by the eggsecutable."""
try:
utils.vip_main(WebSocketAgent, version=__version__)
except Exception as e:
print(e)
_log.exception('unhandled exception')