Аналізатор гонки F1
Project description
Пакет task_6_report
task_6_report — Python package for analyzing Formula 1 race results: loading logs, building reports, output via CLI.
Installation
pip install task_6_report
Using
from race_report.report import RaceData
from pathlib import Path
# Вкажи шлях до папки з файлами
folder = Path(r"your path to the folder/data")
# Ініціалізація RaceData — передаємо шлях до папки як параметр folder
data = RaceData(folder=folder)
# Завантаження даних з файлів start.log, end.log, abbreviations.txt (шляхи утворюються автоматично)
data.load_data()
# Побудова звіту у порядку 'asc' або 'desc'
report = data.build_report(order='asc')
# Вивід звіту в консоль
data.print_report(report)
Required data files:
abbreviations.txt:
DRR_Daniel Ricciardo_RED BULL RACING TAG HEUER
SVF_Sebastian Vettel_FERRARI
LHM_Lewis Hamilton_MERCEDES
start.log:
DRR2018-05-24_12:14:12.054
SVF2018-05-24_12:14:15.145
LHM2018-05-24_12:14:18.035
end.log:
DRR2018-05-24_12:15:26.399
SVF2018-05-24_12:15:29.750
LHM2018-05-24_12:15:33.082
An example of a report:
1. DRR_Daniel Ricciardo | RED BULL RACING TAG HEUER | 1:14.345
2. SVF_Sebastian Vettel | FERRARI | 1:14.788
...
Call in GitBash GitBash (CLI)
To run your report.py file with the --order option, use the following command:
race-report -p PATH_TO_DATA_FOLDER [-o asc|desc] [-d DRIVER_NAME]
Parameters:
- -p, --path (required): path to the folder with the data files
- -o, --order (optional): sort order (asc for ascending, desc for descending), default asc
- -d, --driver (optional): pilot name to display information only for him/her
Examples:
- Build the full report in ascending order:
race-report -p data/ -o asc
- Build the full report in descending order:
race-report -p data/ -o desc
- Get information only about a specific pilot:
race-report -p data/ -d "Sebastian Vettel"
The structure of the project
task_6_report/
├── src/
│ └── race_report/
│ ├── __init__.py
│ ├── report.py
│ └── cli.py
│
├── tests/
│ ├── __init__.py
│ ├── tests_load_data/
│ ├── tests_build_report/
│ ├── tests_print_report/
│ ├── tests_read_abbreviations/
│ └── tests_cli/
│
├── LICENSE
├── pyproject.toml
├── README.md
└── .gitignore
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file task_6_report-0.4.3.tar.gz.
File metadata
- Download URL: task_6_report-0.4.3.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ac7d0fe687f641f32d8a69ed5eddeb2a70b1022fb581fe8fc1e07d94a10319b
|
|
| MD5 |
d508c210746d364ee31717581551631d
|
|
| BLAKE2b-256 |
c12e81bcce753576fffc822b8ac6ce7c5895fc1b1365d59df1e329db1c7aa43b
|
File details
Details for the file task_6_report-0.4.3-py3-none-any.whl.
File metadata
- Download URL: task_6_report-0.4.3-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64df94b36449b4a1f3fd8b0e70de5f48cb11c61bc95ecb045d0b7bfea1817d71
|
|
| MD5 |
75766dfedc12fd8ea8fbe720c6584bf3
|
|
| BLAKE2b-256 |
ada094e04a20a8dffc038178c990c9d65f6818c05ccaba05edefc7efe2ec3ce1
|