Metadata-Version: 2.4
Name: logslop
Version: 0.1.1
Summary: Log deduplication: strip repeated lines so readers and agents can focus on key events.
Author: Advanced Micro Devices, Inc.
License: MIT
Project-URL: homepage, https://github.com/amd/logslop
Project-URL: repository, https://github.com/amd/logslop
Project-URL: issues, https://github.com/amd/logslop/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# LogsLop - Log Deduplication Tool

LogsLop is a log summarization tool that removes repeated messages from log files, enabling readers and agents to home in quickly on key message events.

## Getting started

```bash
pip install logslop
```

Pipe repetitive log output through LogsLop:

```bash
journalctl --no-pager | logslop
your-command 2>&1 | logslop
logslop < your.log
```

Requires Python 3.8+. Run `logslop --help` for options (`-t` match threshold, `-n` max clusters).
