cli2 3.3.41__tar.gz → 3.3.42__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cli2-3.3.41/cli2.egg-info → cli2-3.3.42}/PKG-INFO +1 -1
- {cli2-3.3.41 → cli2-3.3.42}/cli2/group.py +23 -13
- {cli2-3.3.41 → cli2-3.3.42}/cli2/logging.py +4 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_group.py +8 -0
- {cli2-3.3.41 → cli2-3.3.42/cli2.egg-info}/PKG-INFO +1 -1
- {cli2-3.3.41 → cli2-3.3.42}/setup.py +1 -1
- {cli2-3.3.41 → cli2-3.3.42}/MANIFEST.in +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/README.rst +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/classifiers.txt +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/__init__.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/argument.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/asyncio.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/cli.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/client.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/colors.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/command.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/configuration.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/decorators.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/display.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/entry_point.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/example_client.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/example_client_complex.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/example_nesting.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/example_obj.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/node.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/overrides.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/sphinx.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/table.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_cli.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_client.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_command.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_configuration.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_decorators.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_display.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_entry_point.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_inject.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_node.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2/test_table.py +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2.egg-info/SOURCES.txt +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2.egg-info/dependency_links.txt +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2.egg-info/entry_points.txt +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2.egg-info/requires.txt +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/cli2.egg-info/top_level.txt +0 -0
- {cli2-3.3.41 → cli2-3.3.42}/setup.cfg +0 -0
|
@@ -195,19 +195,29 @@ class Group(EntryPoint, dict):
|
|
|
195
195
|
for name, method in cls.__dict__.items():
|
|
196
196
|
if leaf and getattr(final, name, '_') is None:
|
|
197
197
|
continue
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
198
|
+
self.load_method(final, method)
|
|
199
|
+
|
|
200
|
+
def load_obj(self, obj):
|
|
201
|
+
"""
|
|
202
|
+
Load all methods which have been decorated with @cmd
|
|
203
|
+
"""
|
|
204
|
+
for name in dir(obj):
|
|
205
|
+
self.load_method(obj, getattr(obj, name))
|
|
206
|
+
|
|
207
|
+
def load_method(self, obj, method):
|
|
208
|
+
wrapped_method = getattr(method, '__func__', None)
|
|
209
|
+
cfg = getattr(
|
|
210
|
+
wrapped_method,
|
|
211
|
+
'cli2',
|
|
212
|
+
getattr(method, 'cli2', None),
|
|
213
|
+
)
|
|
214
|
+
if cfg is None:
|
|
215
|
+
return
|
|
216
|
+
condition = cfg.get('condition', None)
|
|
217
|
+
if condition:
|
|
218
|
+
if not condition(obj):
|
|
219
|
+
return
|
|
220
|
+
self.cmd(method)
|
|
211
221
|
|
|
212
222
|
def __call__(self, *argv):
|
|
213
223
|
self.exit_code = 0
|
|
@@ -22,6 +22,10 @@ class YAMLFormatter:
|
|
|
22
22
|
|
|
23
23
|
def configure():
|
|
24
24
|
LOG_LEVEL = os.getenv('LOG_LEVEL', 'WARNING').upper()
|
|
25
|
+
|
|
26
|
+
if os.getenv('DEBUG'):
|
|
27
|
+
LOG_LEVEL = 'DEBUG'
|
|
28
|
+
|
|
25
29
|
timestamper = structlog.processors.TimeStamper(fmt='%Y-%m-%d %H:%M:%S')
|
|
26
30
|
pre_chain = [
|
|
27
31
|
# add log level and timestamp to event_dict
|
|
@@ -232,9 +232,17 @@ def test_load_cls():
|
|
|
232
232
|
group.load_cls(Foo)
|
|
233
233
|
assert list(group.keys()) == ['help', 'test', 'test2']
|
|
234
234
|
|
|
235
|
+
group = Group()
|
|
236
|
+
group.load_obj(Foo())
|
|
237
|
+
assert list(group.keys()) == ['help', 'test', 'test2']
|
|
238
|
+
|
|
235
239
|
class Child(Foo):
|
|
236
240
|
test2 = None
|
|
237
241
|
|
|
238
242
|
group = Group()
|
|
239
243
|
group.load_cls(Child)
|
|
240
244
|
assert list(group.keys()) == ['help', 'test']
|
|
245
|
+
|
|
246
|
+
group = Group()
|
|
247
|
+
group.load_obj(Child())
|
|
248
|
+
assert list(group.keys()) == ['help', 'test']
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|