├── Envfile ├── README.rst ├── envy ├── __init__.py ├── cli.py ├── core.py ├── packages │ ├── __init__.py │ └── clint │ │ ├── __init__.py │ │ ├── arguments.py │ │ ├── eng.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── appdirs.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ └── ordereddict.py │ │ ├── pipes.py │ │ ├── resources.py │ │ ├── textui │ │ ├── __init__.py │ │ ├── colored.py │ │ ├── cols.py │ │ ├── core.py │ │ ├── formatters.py │ │ ├── progress.py │ │ └── prompt.py │ │ └── utils.py └── version.py ├── requirements.txt ├── setup.py └── t └── setup.cfg /Envfile: -------------------------------------------------------------------------------- 1 | module: clint 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/README.rst -------------------------------------------------------------------------------- /envy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/cli.py -------------------------------------------------------------------------------- /envy/core.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envy/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envy/packages/clint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/__init__.py -------------------------------------------------------------------------------- /envy/packages/clint/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/arguments.py -------------------------------------------------------------------------------- /envy/packages/clint/eng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/eng.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /envy/packages/clint/packages/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/appdirs.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/colorama/__init__.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/colorama/ansi.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/colorama/ansitowin32.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/colorama/initialise.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/colorama/win32.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/colorama/winterm.py -------------------------------------------------------------------------------- /envy/packages/clint/packages/ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/packages/ordereddict.py -------------------------------------------------------------------------------- /envy/packages/clint/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/pipes.py -------------------------------------------------------------------------------- /envy/packages/clint/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/resources.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/__init__.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/colored.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/colored.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/cols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/cols.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/core.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/formatters.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/progress.py -------------------------------------------------------------------------------- /envy/packages/clint/textui/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/textui/prompt.py -------------------------------------------------------------------------------- /envy/packages/clint/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/envy/packages/clint/utils.py -------------------------------------------------------------------------------- /envy/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.1' -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | clint==0.3.1 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/setup.py -------------------------------------------------------------------------------- /t/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/envy/HEAD/t/setup.cfg --------------------------------------------------------------------------------