1# http://pyrocko.org - GPLv3 

2# 

3# The Pyrocko Developers, 21st Century 

4# ---|P------/S----------~Lg---------- 

5 

6 

7headline = 'Experimental Squirrel-powered Snuffler.' 

8 

9 

10def make_subparser(subparsers): 

11 return subparsers.add_parser( 

12 'snuffler', 

13 help=headline, 

14 description=headline) 

15 

16 

17def setup(parser): 

18 parser.add_squirrel_selection_arguments() 

19 

20 

21def run(parser, args): 

22 squirrel = args.make_squirrel() 

23 squirrel.pile.snuffle()