k6control
k6control copied to clipboard
A command-and-control UI for k6
Running `k6control` with Python3 generates multiple errors: ``` SyntaxError: Missing parentheses in call to 'print'. Did you mean print()? ```
This needed a gitignore when I went through it with PyCharm for making it Python 3 compatible. This addresses the issues in #1 and #3.
``` python.exe k6control.py -a localhost:6565 ``` ``` Traceback (most recent call last): File "k6control.py", line 293, in main() File "k6control.py", line 46, in main curses.wrapper(run) File "F:\PortableApps\Python\lib\curses\__init__.py", line 94, in...
``` Traceback (most recent call last): File "k6control.py", line 293, in main() File "k6control.py", line 46, in main curses.wrapper(run) File "F:\PortableApps\Python\lib\curses\__init__.py", line 94, in wrapper return func(stdscr, *args, **kwds) File...