Mercurial > hg > MakeItSo
view templates/script.py @ 21:c879b93c3f15
stub out fetching tempita from the internet; bitbucket is down, so no further work here atm
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 21 Nov 2010 12:56:37 -0800 |
parents | 08a50935e941 |
children | 3bf29175907c |
line wrap: on
line source
#!/usr/bin/env """ utlities related to getting JSON into couchdb """ import sys from optparse import OptionParser def main(args=sys.argv[:]): usage = '%prog [options]' parser = OptionParser(usage=usage, description=__doc__) options, args = parser.parse_args(args) if __name__ == '__main__': main()