mirror of
https://github.com/kennethreitz/clint.git
synced 2026-06-05 14:50:17 +00:00
23 lines
582 B
Python
23 lines
582 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import print_function
|
|
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.abspath('..'))
|
|
|
|
from clint import args
|
|
from clint.textui import puts, colored, indent
|
|
|
|
with indent(4, quote='>>>'):
|
|
puts(colored.red('Aruments passed in: ') + str(args.all))
|
|
puts(colored.red('Flags detected: ') + str(args.flags))
|
|
puts(colored.red('Files detected: ') + str(args.files))
|
|
puts(colored.red('NOT Files detected: ') + str(args.not_files))
|
|
puts(colored.red('Grouped Arguments: ') + str(dict(args.grouped)))
|
|
|
|
print()
|
|
|