fix import and README

This commit is contained in:
gmega 2023-10-19 18:09:27 -03:00
parent b63ece0fea
commit 0f8c058ff4
No known key found for this signature in database
GPG Key ID: FFD8DAF00660270F
2 changed files with 2 additions and 3 deletions

View File

@ -3,7 +3,7 @@
## Installation
```sh
pip install pip install git+https://github.com/gmega/logtools.git
pip install git+https://github.com/gmega/logtools.git
```
## Usage

View File

@ -1,10 +1,9 @@
"""Parses a log stream, possibly pre-filtered and/or merged, into a CSV file. Allows chronicles topics to be
extracted into their own columns."""
import sys
from argparse import ArgumentParser
from csv import DictWriter
from traitlets.config.loader import ArgumentParser
from logtools.log.sources.stream_log_source import StreamLogSource