|
|
|
@ -81,9 +81,11 @@ def instance (**_args):
|
|
|
|
|
if not registry.isloaded () :
|
|
|
|
|
if ('path' in _args and registry.exists(_args['path'] )) or registry.exists():
|
|
|
|
|
registry.load() if 'path' not in _args else registry.load(_args['path'])
|
|
|
|
|
_info = {}
|
|
|
|
|
if 'label' in _args and registry.isloaded():
|
|
|
|
|
_info = registry.get(_args['label'])
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
_info = registry.get()
|
|
|
|
|
if _info :
|
|
|
|
|
#
|
|
|
|
|
# _args = dict(_args,**_info)
|
|
|
|
@ -132,7 +134,7 @@ class get :
|
|
|
|
|
"""
|
|
|
|
|
@staticmethod
|
|
|
|
|
def reader (**_args):
|
|
|
|
|
if not _args :
|
|
|
|
|
if not _args or 'provider' not in _args:
|
|
|
|
|
_args['label'] = 'default'
|
|
|
|
|
_args['context'] = 'read'
|
|
|
|
|
return instance(**_args)
|
|
|
|
|