pysipp icon indicating copy to clipboard operation
pysipp copied to clipboard

SIPp for Humans - launch multiple agents with Python

Results 38 pysipp issues
Sort by recently updated
recently updated
newest added

`pysipp.server()` and `pysipp.client()` appear to be implemented identically, the only exceptions being their respective default scenario name and the fact that `pysipp.server()` is not supposed to accept a `destaddr` keyword...

bug

Hello, Using latest pysipp (with sipp 3.5.2): ``` import pysipp uac = pysipp.client(invalid_arg='foo') ``` Is there a way to trigger an error or warning when passing an invalid argument ?...

bug

raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: '-sn': '-sn' --- #### UPDATE (by @goodboy) The real issue here is not loading a more explicit error...

bug

import pysipp pysipp.client(auth_username='xxx', auth_password='xxx')() The following problems occur FileNotFoundError: [Errno 2] No such file or directory: '-sn': '-sn'

Was trying to let a hopeful new contrib take this very simple change on but it seems i'm not explaining the change well? See the details in #74. Fixes #74.

``` conftest.py:3: in import pysipp /usr/local/lib/python3.9/dist-packages/pysipp/__init__.py:23: in from . import launch, report, plugin, netplug, agent /usr/local/lib/python3.9/dist-packages/pysipp/plugin.py:9: in mng = pluggy.PluginManager('pysipp', implprefix='pysipp') E TypeError: __init__() got an unexpected keyword argument 'implprefix'...

bug

Hi, thanks for the great software! I have one question though, could not find the answer in the docs or code: How can I pass arguments that are not listed...

help wanted
question
docs

This is in preparation of a python 3.6+ only `1.0.0.alpha` release and replaces all the internal processing launching machinery with the new [subprocess support in `trio`](https://trio.readthedocs.io/en/latest/reference-io.html#spawning-subprocesses). This not only gets...

we can used windows system?

help wanted

There's new work in python-trio/trio#1568 that will likely make some of our internals simpler. The only outstanding concern I had was to do with the `AsyncResource.aclos()` steps that were possibly...

enhancement
question
refactor