Guest User

Untitled

a guest
Jun 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4. from __future__ import print_function
  5.  
  6. import sys
  7. import os
  8.  
  9. sys.path.insert(0, os.path.abspath('..'))
  10.  
  11. from clint.arguments import Args
  12. from clint.textui import puts, colored, indent
  13.  
  14. args = Args()
  15.  
  16. with indent(4, quote='>>>'):
  17. puts(colored.blue('Aruments passed in: ') + str(args.all))
  18. puts(colored.blue('Flags detected: ') + str(args.flags))
  19. puts(colored.blue('Files detected: ') + str(args.files))
  20. puts(colored.blue('NOT Files detected: ') + str(args.not_files))
  21. puts(colored.blue('Grouped Arguments: ') + str(dict(args.grouped)))
  22.  
  23. print()
Add Comment
Please, Sign In to add comment