Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.78 KB

README.md

File metadata and controls

51 lines (30 loc) · 1.78 KB

Gendiff

Gendiff is a tool that can compare two files.

Maintainability Build Status Test Coverage Github Actions Status

Installation

pip install -i https://test.pypi.org/simple/ kotano-gendiff

Usage


Basic usage

gendiff path/to/file1  path/to/file2

asciicast

Yaml support

asciicast

Plain format

asciicast

Json format

asciicast

Contributing

Adding new view

Views folder is made to add new views to Gendiff.

To add new view you should create new module in views folder. It's name will be collected by cli automatically.

Inside that module you have to add function called 'modulename + _view', i.e. plain_view for plain module.

After you finished creating your view, add corresponding code to views.__init__.render function.