iperf3-python icon indicating copy to clipboard operation
iperf3-python copied to clipboard

Python wrapper around iperf3

Results 40 iperf3-python issues
Sort by recently updated
recently updated
newest added

python3.10 is the python version included with the Ubuntu 22.04 LTS release. I'm finding that the iperf3 python module fails with this version. Example output: ` File "/usr/local/share/lcwa-speed/lib/python3.10/site-packages/iperf3/iperf3.py", line 100,...

Hey, Is there a way I can get the data in json form and also have stdout stored in that json (or separately)? Thanks

want to run UDP tests, but throughput/bandwidth measured at server side if i run iperf3 from the CLI i get both what i sent and the servers received data results....

Hello, Let me explain the situation. I have a server that periodically sends commands to a bunch of clients (I have written the client and the server code), when the...

I'm using Python 2.7.12, iperf 3.0.11 on a Ubuntu 16.04.1 x86_64 machine. I configured the client to run as follows: ``` >>> import iperf3 >>> client = iperf3.Client() >>> client.duration...

Hi everyone, I was wandering if it's possible to set MSS value for TCP streams? Tried tcp_mss_default, but doesn't look to have any impact. Thank you! Kr, Dan

It would be useful to have bidirectional (-bidir) functionality added to the client. Any plans to add this?

This looks like a fantastic library that I'd like to use, however, I am unable to build this with bazel due to the `extra_require` at https://github.com/thiezn/iperf3-python/blob/master/setup.py#L65 that references `iperf3`. https://github.com/bazelbuild/rules_python#using-the-packaging-rules...

Running following code, based mostly on [this example](https://github.com/thiezn/iperf3-python/blob/master/examples/client.py) produces error: ``` #!/usr/bin/env python3 import iperf3 client = iperf3.Client() client.duration = 1 client.server_hostname = '127.0.0.1' client.port = 5201 while True: print('Connecting...