Compare commits
2 Commits
591ac112dd
...
d5bcc27608
Author | SHA1 | Date |
---|---|---|
Reik Kaps | d5bcc27608 | |
Reik Kaps | 16a73b5949 |
|
@ -55,10 +55,11 @@ def status(json_data, verbose):
|
|||
pass
|
||||
|
||||
if json_data['state']['open'] is False:
|
||||
print(' {} is closed'.format(str(json_data['space'])))
|
||||
if verbose:
|
||||
print('{} is closed'.format(str(json_data['space'])))
|
||||
return False
|
||||
|
||||
print(' {} is open'.format(str(json_data['space'])))
|
||||
print('{} is open'.format(str(json_data['space'])))
|
||||
return True
|
||||
|
||||
|
||||
|
@ -115,17 +116,22 @@ def main(args):
|
|||
getHomepage(data, debug)
|
||||
sys.exit(0)
|
||||
|
||||
if status(data, verbose=False):
|
||||
if status(data, debug):
|
||||
sys.exit(0)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser(description='Show Space Status')
|
||||
parser.add_argument('-n', '--name', help='Name of Hackerspace', default='LeineLab')
|
||||
parser.add_argument('-d', '--details', help='Shows more details of Hackerspace')
|
||||
parser.add_argument('-l', '--list', action='store_true', help='List all Hackspaces on Spaceapi')
|
||||
parser.add_argument('-v', '--verbose', action='store_true', help='verbose output')
|
||||
parser.add_argument('-w', '--web', action='store_true', help='get homepage url')
|
||||
parser.add_argument('-n', '--name', help='Name of Hackerspace',
|
||||
default='LeineLab')
|
||||
parser.add_argument('-d', '--details',
|
||||
help='Shows more details of Hackerspace')
|
||||
parser.add_argument('-l', '--list', action='store_true',
|
||||
help='List all Hackspaces on Spaceapi')
|
||||
parser.add_argument('-v', '--verbose', action='store_true',
|
||||
help='verbose output')
|
||||
parser.add_argument('-w', '--web', action='store_true',
|
||||
help='get homepage url')
|
||||
args = parser.parse_args()
|
||||
|
||||
main(args)
|
||||
|
|
Loading…
Reference in New Issue