Skip to content

Instantly share code, notes, and snippets.

View chinchalinchin's full-sized avatar

Grant Moore chinchalinchin

  • Booz Allen
  • Cumberland, MD
View GitHub Profile
@chinchalinchin
chinchalinchin / blame-praise.py
Created September 16, 2022 18:09 — forked from amarao/blame-praise.py
Example of argparse with subparsers for python
#!/usr/bin/env python
import argparse
def main(command_line=None):
parser = argparse.ArgumentParser('Blame Praise app')
parser.add_argument(
'--debug',
action='store_true',
help='Print debug info'