Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 579 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 579 Bytes

qvis-python

A set of QUIC visualization tools inspired by qvis.

TODO

Examples

Get received bytes on stream 3

from qvis.connection import read_qlog
conn = read_qlog('testdata/client.qlog')
conn.total_received_stream_payload(3)

Plot received bytes on stream 3

from qvis.connection import read_qlog
from qvis.plot import plot_stream_data_received
from matplotlib import pyplot as plt
conn = read_qlog('testdata/client.qlog')
fig, ax = plt.subplots()
plot_stream_data_received(ax, conn, 3)
fig.show()