Created
February 27, 2021 22:18
-
-
Save tuanchauict/6bb0a5fc3f7ad254cea68633d2d452ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ArgumentParser: | |
def __init__(self, args): | |
self.positioned_arguments = list(filter(lambda x: not x.startswith('--'), args)) | |
self.named_argument_map = dict(map(lambda x: x.split("=", 1) if "=" in x else (x, None), | |
filter(lambda x: x.startswith('--'), args))) | |
def get(self, key_or_index): | |
if type(key_or_index) is int: | |
return self.positioned_arguments[key_or_index] | |
else: | |
return self.named_argument_map[str(key_or_index)] | |
def has_key(self, key): | |
return key in self.named_argument_map |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment