I have a class which can be built with different combinations of arguments, but I have a list of arguments that are required. Here is how I currently check:
# check for the required arguments
rqrd_args = ['a', 'b', 'c'] # required arguments
mssing_args = set(rqrd_args)-set(kwargs.keys())
if mssing_args:
error_lines = ['The following required arguments are missing:']
error_lines.extend(['\t%s'%x for x in mssing_args])
sys.exit('\n'.join(error_lines))
# pull from kwargs
self.a = kwargs['a']
self.b = kwargs['b']
self.c = kwargs['c']
I tend to re-use this code a lot. My question is, can I somehow replace the "#pull from kwargs" section with a loop that goes through the required argument list that way the code is more universal? Is there a reason why I wouldn't want to do this?
This should do the trick: