chore: init
icyphox icyph0x@protonmail.com
Thu, 15 Mar 2018 23:22:52 +0530
2 files changed,
14 insertions(+),
0 deletions(-)
A
quentin.py
@@ -0,0 +1,13 @@
+import markdown2 +import sys +import argparse + +parser = argparse.ArgumentParser(description='A simple and mnml static site generator.') +parser.add_argument('new', help='Create a new project.') + +if len(sys.argv) == 1: + parser.print_help() + sys.exit(1) + +args = parser.parse_args() +print(args)