def main(**kargs):
    common_main(
        kargs,
        _add_arguments,
        _update_options,
        default_worker='tangobenchmarks.client.python.read.Worker',
        description=('perform check if and how a number of simultaneous '
                     'clients affect attributes reads speed'),
        title="Read Benchmark",
        header_text="read")
def main(**kargs):
    common_main(
        kargs,
        _add_arguments,
        _update_options,
        default_worker='tangobenchmarks.client.python.pushevent.Worker',
        description=(
            'perform check if and how number of parallel '
            'subscribers affects subscription time'),
        title="Event Benchmark",
        header_text="event")
def main(**kargs):
    common_main(
        kargs,
        _add_arguments,
        _update_options,
        default_worker='tangobenchmarks.client.python.pipe_write.Worker',
        build_extra_options=_build_extra_options,
        description=('perform check if and how a number of simultaneous '
                     'clients affect pipes write speed'),
        title="Pipe Write Benchmark",
        header_text="write")