Metadata-Version: 2.1
Name: report_monaco_road
Version: 0.0.4
Summary: Package count unique chars in file or string
Author-email: Botvinko Dmitro <dmitrobottvinko@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Report of Monaco 2018 Racing
This module read data from 3 files, order racers by time and print report that shows the top 15 racers and the rest after underline.

	
#### abbreviations.txt ->
````
SVF_Sebastian Vettel_FERRARI
LHM_Lewis Hamilton_MERCEDES
KRF_Kimi Räikkönen_FERRARI
````
#### end.log ->
````
SVF2018-05-24_12:04:03.332
LHM2018-05-24_12:11:32.585
KRF2018-05-24_12:04:13.889
````

#### start.log -> 
````
SVF2018-05-24_12:02:58.917
LHM2018-05-24_12:18:20.125
KRF2018-05-24_12:03:01.250
````
## Examples:
#### Shows list of drivers and by asc:
```bash
python3.8 -m report_monaco --files road_data/ --asc
```
#### Return:
```
1. Sebastian Vettel  | FERRARI  | 0:01:04.415000
2. Valtteri Bottas  | MERCEDES  | 0:01:12.434000
3. Stoffel Vandoorne  | MCLAREN RENAULT  | 0:01:12.463000
.......
```
#### Shows list of drivers order by desc:
```bash
python3.8 -m report_monaco --files road_data/ --desc
```
#### Return:
```
1. Kevin Magnussen  | HAAS FERRARI  | 0:01:13.393000
2. Lance Stroll  | WILLIAMS MERCEDES  | 0:01:13.323000
3. Marcus Ericsson  | SAUBER FERRARI  | 0:01:13.265000
.......
```

#### Shows statistic about driver:
```bash
python3.8 -m report_monaco --files road_data/ --driver "Kevin Magnussen"
```
#### Return:
```
1. Kevin Magnussen  | HAAS FERRARI  | 0:01:13.393000
```