#!/usr/bin/env python3
#
# hdr-plot.py - A simple HdrHistogram plotting script.
# Copyright © 2018 - 2023 Bruno Bonacci - Distributed under the Apache License v 2.0
#
# usage: hdr-plot.py [-h] [--output OUTPUT] [--title TITLE] [--nobox] files [files ...]
#
# A standalone plotting script for https://github.com/giltene/wrk2 and
#  https://github.com/HdrHistogram/HdrHistogram.
#
# This is just a quick and unsophisticated script to quickly plot the
# HdrHistograms directly from the output of `wkr2` benchmarks.
#
#
import hdr_plot.hdr_plot as plot

if __name__ == "__main__":
    plot.main()
