本文整理匯總了Python中zeroinstall.injector.requirements.Requirements.parse_options方法的典型用法代碼示例。如果您正苦於以下問題:Python Requirements.parse_options方法的具體用法?Python Requirements.parse_options怎麽用?Python Requirements.parse_options使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類zeroinstall.injector.requirements.Requirements
的用法示例。
在下文中一共展示了Requirements.parse_options方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: get_selections
# 需要導入模塊: from zeroinstall.injector.requirements import Requirements [as 別名]
# 或者: from zeroinstall.injector.requirements.Requirements import parse_options [as 別名]
def get_selections(config, options, iface_uri, select_only, download_only, test_callback, requirements = None):
"""Get selections for iface_uri, according to the options passed.
Will switch to GUI mode if necessary.
@param options: options from OptionParser
@param iface_uri: canonical URI of the interface
@param select_only: return immediately even if the selected versions aren't cached
@param download_only: wait for stale feeds, and display GUI button as Download, not Run
@param requirements: requirements to use; if None, requirements come from options (since 1.15)
@type requirements: Requirements
@return: the selected versions, or None if the user cancels
@rtype: L{selections.Selections} | None
"""
if options.offline:
config.network_use = model.network_offline
iface_cache = config.iface_cache
# Try to load it as a feed. If it is a feed, it'll get cached. If not, it's a
# selections document and we return immediately.
maybe_selections = iface_cache.get_feed(iface_uri, selections_ok = True)
if isinstance(maybe_selections, selections.Selections):
if not select_only:
blocker = maybe_selections.download_missing(config)
if blocker:
logger.info(_("Waiting for selected implementations to be downloaded..."))
tasks.wait_for_blocker(blocker)
return maybe_selections
if requirements is None:
requirements = Requirements(iface_uri)
requirements.parse_options(options)
return get_selections_for(requirements, config, options, select_only, download_only, test_callback)