Metadata-Version: 2.1
Name: difflume
Version: 0.3.1
Summary: TUI app for viewing deltas between text files
Home-page: https://github.com/yakimka/DiffLume
License: MIT
Author: yakimka
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: httpx (>=0.24.1,<0.25.0)
Requires-Dist: textual (>=0.35.1,<0.36.0)
Project-URL: Repository, https://github.com/yakimka/DiffLume
Description-Content-Type: text/markdown

# DiffLume

[![Build Status](https://github.com/yakimka/DiffLume/actions/workflows/workflow-ci.yml/badge.svg?branch=main&event=push)](https://github.com/yakimka/DiffLume/actions/workflows/workflow-ci.yml)
[![codecov](https://codecov.io/gh/yakimka/DiffLume/branch/main/graph/badge.svg)](https://codecov.io/gh/yakimka/DiffLume)
[![pypi](https://img.shields.io/pypi/v/DiffLume.svg)](https://pypi.org/project/DiffLume/)
[![downloads](https://static.pepy.tech/personalized-badge/DiffLume?period=total&units=none&left_color=grey&right_color=blue&left_text=downloads)](https://pepy.tech/project/DiffLume)

TUI app for viewing deltas between text files


## Features

- Three-panel TUI for viewing deltas between text files
- Can view revisions of files (currently only CouchDB is supported)
- Navigate between revisions with ][ and }{ keys
- Sync content between panels
- Full screen mode

## Usage

Install via pip:

```bash
pip install --user DiffLume
```

Then type in your terminal:

```bash
difflume
# or
python -m difflume
```

Or you can run it in Docker:

```bash
docker run -it --rm yakim/difflume
```

## License

[MIT](https://github.com/yakimka/DiffLume/blob/main/LICENSE)


## Credits

This project was generated with [`yakimka/cookiecutter-pyproject`](https://github.com/yakimka/cookiecutter-pyproject).

