Running something like this doesn’t fly in jupyter:
if __name__ == "__main__":
parser = argparse.ArgumentParser()
args = parser.parse_args()
main(args)
… but I’d like for this to be included in the .py so folks can call my script from the command line. Is there a way to make that happen in nbdev?