pyswagger
pyswagger copied to clipboard
An OpenAPI (fka Swagger) client & converter in python, which is type-safe, dynamic, spec-compliant.
File ~/eve-notebook/.venv/lib/python3.10/site-packages/esipy/client.py:13, in 10 from collections import namedtuple 12 import six ---> 13 from pyswagger.core import BaseClient 14 from requests import Request 15 from requests import Session File ~/eve-notebook/.venv/lib/python3.10/site-packages/pyswagger/__init__.py:3, in...
Hi, pyswagger is really robust, I've tested a lot of things like that, but pyswagger seems to be the better option for me. And I'd like to use it to...
I hope it's not my mistake, but maybe there is an issue if you try to refer to local files on Windows: ``` python app = SwaggerApp._create_('file:///C:/Users/me/.../my.yaml') ``` I thought...
The current documentation states to use the parameter "simple_basic_auth" or "simple_basicAuth" with pyswagger's Auth class. Unfortunately, this fails with version 0.8.39. I corrected the documentation accordingly. Please let me know...
This would allow a `Session` instantiated from outside the client (that already had been configured with some cookies, headers, auth data, etc.) to be passed into the requests client either...
fix pytest yaml.load warning
Fixes #176.
Deprecated since version 3.3: If previously used in conjunction with imp.find_module() then consider using importlib.import_module()
Fixes #187
`App.load()` assumes that `url` is a string, for requesting the OpenAPI.json: https://github.com/pyopenapi/pyswagger/blob/333c4ca08e758cd2194943d9904a3eda3fe43977/pyswagger/core.py#L264 However, these are cases where we need more configurability. For example, I've just encountered an OpenAPI endpoint that...