Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/boto/beanstalk/wrapper.py @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
| author | shellac |
|---|---|
| date | Mon, 01 Jun 2020 08:59:25 -0400 |
| parents | 79f47841a781 |
| children |
comparison
equal
deleted
inserted
replaced
| 4:79f47841a781 | 5:9b1c78e6ba9c |
|---|---|
| 1 """Wraps layer1 api methods and converts layer1 dict responses to objects.""" | |
| 2 from boto.beanstalk.layer1 import Layer1 | |
| 3 import boto.beanstalk.response | |
| 4 from boto.exception import BotoServerError | |
| 5 import boto.beanstalk.exception as exception | |
| 6 | |
| 7 | |
| 8 def beanstalk_wrapper(func, name): | |
| 9 def _wrapped_low_level_api(*args, **kwargs): | |
| 10 try: | |
| 11 response = func(*args, **kwargs) | |
| 12 except BotoServerError as e: | |
| 13 raise exception.simple(e) | |
| 14 # Turn 'this_is_a_function_name' into 'ThisIsAFunctionNameResponse'. | |
| 15 cls_name = ''.join([part.capitalize() for part in name.split('_')]) + 'Response' | |
| 16 cls = getattr(boto.beanstalk.response, cls_name) | |
| 17 return cls(response) | |
| 18 return _wrapped_low_level_api | |
| 19 | |
| 20 | |
| 21 class Layer1Wrapper(object): | |
| 22 def __init__(self, *args, **kwargs): | |
| 23 self.api = Layer1(*args, **kwargs) | |
| 24 | |
| 25 def __getattr__(self, name): | |
| 26 try: | |
| 27 return beanstalk_wrapper(getattr(self.api, name), name) | |
| 28 except AttributeError: | |
| 29 raise AttributeError("%s has no attribute %r" % (self, name)) |
