Metadata-Version: 2.0
Name: xdiff
Version: 0.1.0
Summary: A CLI tool to compare data structures, files, folders, http responses, etc.
Home-page: https://github.com/debugtalk/xdiff.git
Author: Leo Lee
Author-email: mail@debugtalk.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Dist: PyYAML
Requires-Dist: future
Requires-Dist: termcolor

# XDiff

A CLI tool to compare data structures, files, folders, http responses, etc.

## Install

```bash
$ python setup.py install
```

## Usage

```text
$ xdiff -h
usage: xdiff [-h] [--log-level LOG_LEVEL]
             [--compare-files COMPARE_FILES [COMPARE_FILES ...]]
             [--compare-folders COMPARE_FOLDERS [COMPARE_FOLDERS ...]]

A CLI tool to compare data structures, files, folders, http responses, etc.

optional arguments:
  -h, --help            show this help message and exit
  --log-level LOG_LEVEL
                        Specify logging level, default is INFO.
  --compare-files COMPARE_FILES [COMPARE_FILES ...]
                        Specify origin file and new file to be compared.
  --compare-folders COMPARE_FOLDERS [COMPARE_FOLDERS ...]
                        Specify origin folder and new folder to be compared.
```


