https://github.com/criticalsool/log
Log parser utility implementation in Python
https://github.com/criticalsool/log
logging python
Last synced: over 1 year ago
JSON representation
Log parser utility implementation in Python
- Host: GitHub
- URL: https://github.com/criticalsool/log
- Owner: criticalsool
- License: gpl-3.0
- Created: 2024-10-11T20:39:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-16T12:27:40.000Z (over 1 year ago)
- Last Synced: 2025-02-01T14:19:16.104Z (over 1 year ago)
- Topics: logging, python
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Log parser utility

## Installation
Create Python virtual environment
```
python -m venv venv
```
> Then [activate it depending on your os](https://docs.python.org/3/library/venv.html#how-venvs-work)
Install python modules
```
pip install -r requirements.txt
```
## Usage
Test it !
```
python main.py
```
### Sources
- [docs.python.org/3/library/argparse.html](https://docs.python.org/3/library/argparse.html)
- [github.com/Textualize/rich](https://github.com/Textualize/rich)