fix import and README
This commit is contained in:
parent
b63ece0fea
commit
0f8c058ff4
|
@ -3,7 +3,7 @@
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
pip install pip install git+https://github.com/gmega/logtools.git
|
pip install git+https://github.com/gmega/logtools.git
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
"""Parses a log stream, possibly pre-filtered and/or merged, into a CSV file. Allows chronicles topics to be
|
"""Parses a log stream, possibly pre-filtered and/or merged, into a CSV file. Allows chronicles topics to be
|
||||||
extracted into their own columns."""
|
extracted into their own columns."""
|
||||||
import sys
|
import sys
|
||||||
|
from argparse import ArgumentParser
|
||||||
from csv import DictWriter
|
from csv import DictWriter
|
||||||
|
|
||||||
from traitlets.config.loader import ArgumentParser
|
|
||||||
|
|
||||||
from logtools.log.sources.stream_log_source import StreamLogSource
|
from logtools.log.sources.stream_log_source import StreamLogSource
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue