all repos — py-vite @ b64b16fc124dfaf6296866081c83f3fa074574af

the original vite, written in python

chore: init
icyphox icyph0x@protonmail.com
Thu, 15 Mar 2018 23:22:52 +0530
commit

b64b16fc124dfaf6296866081c83f3fa074574af

2 files changed, 14 insertions(+), 0 deletions(-)

jump to
A .gitignore

@@ -0,0 +1,1 @@

+.env/
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)