Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# -*- coding: utf-8 -*- 

2 

3"""Console script for gutools.""" 

4import sys 

5import click 

6 

7 

8@click.command() 

9def main(args=None): 

10 """Console script for gutools.""" 

11 click.echo("Replace this message by putting your code into " 

12 "gutools.cli.main") 

13 click.echo("See click documentation at http://click.pocoo.org/") 

14 return 0 

15 

16 

17if __name__ == "__main__": 

18 sys.exit(main()) # pragma: no cover