A set of QUIC visualization tools inspired by qvis.
TODO
fromqvis.connectionimportread_qlogconn=read_qlog('testdata/client.qlog')
conn.total_received_stream_payload(3)fromqvis.connectionimportread_qlogfromqvis.plotimportplot_stream_data_receivedfrommatplotlibimportpyplotaspltconn=read_qlog('testdata/client.qlog')
fig, ax=plt.subplots()
plot_stream_data_received(ax, conn, 3)
fig.show()