本文整理汇总了Python中core.core.Core.detect_workers方法的典型用法代码示例。如果您正苦于以下问题:Python Core.detect_workers方法的具体用法?Python Core.detect_workers怎么用?Python Core.detect_workers使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.core.Core
的用法示例。
在下文中一共展示了Core.detect_workers方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: len
# 需要导入模块: from core.core import Core [as 别名]
# 或者: from core.core.Core import detect_workers [as 别名]
# Figure out instance name
if len(args) == 0: instancename = "default"
elif len(args) == 1: instancename = args[0]
else: parser.error("Incorrect number of arguments")
# Create core instance, will load saved instance state if present
core = Core(instance = instancename, default_loglevel = options.default_loglevel)
# Autodetect appropriate frontends if requested or if a new instance is being set up
if options.detect_frontends or core.is_new_instance:
core.detect_frontends()
# Autodetect available workers if requested or if a new instance is being set up
if options.detect_workers or core.is_new_instance:
core.detect_workers()
# Add example work sources if requested or if a new instance is being set up
if options.add_example_work_sources or core.is_new_instance:
from core.blockchain import Blockchain
from core.worksourcegroup import WorkSourceGroup
from modules.theseven.bcjsonrpc.bcjsonrpcworksource import BCJSONRPCWorkSource
# Find the Bitcoin block chain, or create it if neccessary
blockchain = core.get_blockchain_by_name("Bitcoin")
if not blockchain:
blockchain = Blockchain(core)
blockchain.settings.name = "Bitcoin"
core.add_blockchain(blockchain)
# Save the old root work source (will be moved around)
usersources = core.get_root_work_source()
# Create the new root work source group