├── .bumpversion.cfg ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── support-request.md └── workflows │ ├── python-release.yml │ └── python-test.yml ├── .gitignore ├── CHANGES ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── SECURITY.md ├── benchmark ├── benchmark.wsdl └── run_parsing.py ├── codecov.yml ├── docs ├── Makefile ├── _static │ └── zeep-logo.png ├── _templates │ └── sidebar-intro.html ├── api.rst ├── attachments.rst ├── changes.rst ├── client.rst ├── conf.py ├── datastructures.rst ├── headers.rst ├── helpers.rst ├── in_depth.rst ├── index.rst ├── internals.rst ├── internals_wsdl.rst ├── internals_xsd.rst ├── make.bat ├── plugins.rst ├── reporting_bugs.rst ├── requirements.txt ├── settings.rst ├── transport.rst ├── wsa.rst └── wsse.rst ├── examples ├── Makefile ├── async_client.py ├── code39.py ├── echo_services.py ├── eu_vat_service.py ├── http_basic_auth.py ├── km_to_miles.py ├── soap_server.py └── trafficvance_apikey.py ├── mypy.ini ├── pyproject.toml ├── src └── zeep │ ├── __init__.py │ ├── __main__.py │ ├── cache.py │ ├── client.py │ ├── exceptions.py │ ├── helpers.py │ ├── loader.py │ ├── ns.py │ ├── plugins.py │ ├── proxy.py │ ├── py.typed │ ├── settings.py │ ├── transports.py │ ├── utils.py │ ├── wsa.py │ ├── wsdl │ ├── __init__.py │ ├── attachments.py │ ├── bindings │ │ ├── __init__.py │ │ ├── http.py │ │ └── soap.py │ ├── definitions.py │ ├── messages │ │ ├── __init__.py │ │ ├── base.py │ │ ├── http.py │ │ ├── mime.py │ │ ├── multiref.py │ │ ├── soap.py │ │ └── xop.py │ ├── parse.py │ ├── utils.py │ └── wsdl.py │ ├── wsse │ ├── __init__.py │ ├── compose.py │ ├── signature.py │ ├── username.py │ └── utils.py │ └── xsd │ ├── __init__.py │ ├── const.py │ ├── context.py │ ├── elements │ ├── __init__.py │ ├── any.py │ ├── attribute.py │ ├── base.py │ ├── builtins.py │ ├── element.py │ ├── indicators.py │ └── references.py │ ├── printer.py │ ├── schema.py │ ├── types │ ├── __init__.py │ ├── any.py │ ├── base.py │ ├── builtins.py │ ├── collection.py │ ├── complex.py │ ├── simple.py │ └── unresolved.py │ ├── utils.py │ ├── valueobjects.py │ └── visitor.py ├── tests ├── __init__.py ├── cert_valid.pem ├── cert_valid_pw.pem ├── conftest.py ├── integration │ ├── hello_world_recursive.wsdl │ ├── hello_world_recursive_import.wsdl │ ├── recursive_schema_a.xsd │ ├── recursive_schema_b.xsd │ ├── recursive_schema_c.xsd │ ├── recursive_schema_main.wsdl │ ├── test_hello_world_recursive.py │ ├── test_http_post.py │ ├── test_http_post.wsdl │ └── test_recursive_schema.py ├── test_async_client.py ├── test_async_transport.py ├── test_cache.py ├── test_client.py ├── test_client_factory.py ├── test_helpers.py ├── test_loader.py ├── test_main.py ├── test_pprint.py ├── test_response.py ├── test_settings.py ├── test_soap_multiref.py ├── test_soap_xop.py ├── test_transports.py ├── test_wsa.py ├── test_wsdl.py ├── test_wsdl_arrays.py ├── test_wsdl_messages_document.py ├── test_wsdl_messages_http.py ├── test_wsdl_messages_rpc.py ├── test_wsdl_no_output_message_part.py ├── test_wsdl_soap.py ├── test_wsse_signature.py ├── test_wsse_username.py ├── test_wsse_utils.py ├── test_xsd.py ├── test_xsd_any.py ├── test_xsd_attributes.py ├── test_xsd_builtins.py ├── test_xsd_complex_types.py ├── test_xsd_element.py ├── test_xsd_extension.py ├── test_xsd_indicators_all.py ├── test_xsd_indicators_choice.py ├── test_xsd_indicators_group.py ├── test_xsd_indicators_sequence.py ├── test_xsd_integration.py ├── test_xsd_parse.py ├── test_xsd_schemas.py ├── test_xsd_signatures.py ├── test_xsd_simple_types.py ├── test_xsd_types.py ├── test_xsd_union.py ├── test_xsd_validation.py ├── test_xsd_valueobjects.py ├── test_xsd_visitor.py ├── utils.py └── wsdl_files │ ├── claim.wsdl │ ├── http.wsdl │ ├── soap-enc.xsd │ ├── soap.wsdl │ ├── soap_header.wsdl │ ├── soap_import_2.wsdl │ ├── soap_import_main.wsdl │ ├── soap_transport_err.wsdl │ ├── test_import_2.xsd │ └── xmldsig-core-schema.xsd └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benchmark/benchmark.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/benchmark/benchmark.wsdl -------------------------------------------------------------------------------- /benchmark/run_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/benchmark/run_parsing.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/zeep-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/_static/zeep-logo.png -------------------------------------------------------------------------------- /docs/_templates/sidebar-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/_templates/sidebar-intro.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/attachments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/attachments.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/client.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/datastructures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/datastructures.rst -------------------------------------------------------------------------------- /docs/headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/headers.rst -------------------------------------------------------------------------------- /docs/helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/helpers.rst -------------------------------------------------------------------------------- /docs/in_depth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/in_depth.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/internals.rst -------------------------------------------------------------------------------- /docs/internals_wsdl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/internals_wsdl.rst -------------------------------------------------------------------------------- /docs/internals_xsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/internals_xsd.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/reporting_bugs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/reporting_bugs.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | -e .[docs] 2 | -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/transport.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/transport.rst -------------------------------------------------------------------------------- /docs/wsa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/wsa.rst -------------------------------------------------------------------------------- /docs/wsse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/docs/wsse.rst -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/async_client.py -------------------------------------------------------------------------------- /examples/code39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/code39.py -------------------------------------------------------------------------------- /examples/echo_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/echo_services.py -------------------------------------------------------------------------------- /examples/eu_vat_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/eu_vat_service.py -------------------------------------------------------------------------------- /examples/http_basic_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/http_basic_auth.py -------------------------------------------------------------------------------- /examples/km_to_miles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/km_to_miles.py -------------------------------------------------------------------------------- /examples/soap_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/soap_server.py -------------------------------------------------------------------------------- /examples/trafficvance_apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/examples/trafficvance_apikey.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/zeep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/__init__.py -------------------------------------------------------------------------------- /src/zeep/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/__main__.py -------------------------------------------------------------------------------- /src/zeep/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/cache.py -------------------------------------------------------------------------------- /src/zeep/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/client.py -------------------------------------------------------------------------------- /src/zeep/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/exceptions.py -------------------------------------------------------------------------------- /src/zeep/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/helpers.py -------------------------------------------------------------------------------- /src/zeep/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/loader.py -------------------------------------------------------------------------------- /src/zeep/ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/ns.py -------------------------------------------------------------------------------- /src/zeep/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/plugins.py -------------------------------------------------------------------------------- /src/zeep/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/proxy.py -------------------------------------------------------------------------------- /src/zeep/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/zeep/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/settings.py -------------------------------------------------------------------------------- /src/zeep/transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/transports.py -------------------------------------------------------------------------------- /src/zeep/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/utils.py -------------------------------------------------------------------------------- /src/zeep/wsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsa.py -------------------------------------------------------------------------------- /src/zeep/wsdl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/__init__.py -------------------------------------------------------------------------------- /src/zeep/wsdl/attachments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/attachments.py -------------------------------------------------------------------------------- /src/zeep/wsdl/bindings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/bindings/__init__.py -------------------------------------------------------------------------------- /src/zeep/wsdl/bindings/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/bindings/http.py -------------------------------------------------------------------------------- /src/zeep/wsdl/bindings/soap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/bindings/soap.py -------------------------------------------------------------------------------- /src/zeep/wsdl/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/definitions.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/__init__.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/base.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/http.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/mime.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/multiref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/multiref.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/soap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/soap.py -------------------------------------------------------------------------------- /src/zeep/wsdl/messages/xop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/messages/xop.py -------------------------------------------------------------------------------- /src/zeep/wsdl/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/parse.py -------------------------------------------------------------------------------- /src/zeep/wsdl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/utils.py -------------------------------------------------------------------------------- /src/zeep/wsdl/wsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsdl/wsdl.py -------------------------------------------------------------------------------- /src/zeep/wsse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsse/__init__.py -------------------------------------------------------------------------------- /src/zeep/wsse/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsse/compose.py -------------------------------------------------------------------------------- /src/zeep/wsse/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsse/signature.py -------------------------------------------------------------------------------- /src/zeep/wsse/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsse/username.py -------------------------------------------------------------------------------- /src/zeep/wsse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/wsse/utils.py -------------------------------------------------------------------------------- /src/zeep/xsd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/__init__.py -------------------------------------------------------------------------------- /src/zeep/xsd/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/const.py -------------------------------------------------------------------------------- /src/zeep/xsd/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/context.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/__init__.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/any.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/attribute.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/base.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/builtins.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/element.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/indicators.py -------------------------------------------------------------------------------- /src/zeep/xsd/elements/references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/elements/references.py -------------------------------------------------------------------------------- /src/zeep/xsd/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/printer.py -------------------------------------------------------------------------------- /src/zeep/xsd/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/schema.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/__init__.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/any.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/base.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/builtins.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/collection.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/complex.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/simple.py -------------------------------------------------------------------------------- /src/zeep/xsd/types/unresolved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/types/unresolved.py -------------------------------------------------------------------------------- /src/zeep/xsd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/utils.py -------------------------------------------------------------------------------- /src/zeep/xsd/valueobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/valueobjects.py -------------------------------------------------------------------------------- /src/zeep/xsd/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/src/zeep/xsd/visitor.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/cert_valid.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/cert_valid.pem -------------------------------------------------------------------------------- /tests/cert_valid_pw.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/cert_valid_pw.pem -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/hello_world_recursive.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/hello_world_recursive.wsdl -------------------------------------------------------------------------------- /tests/integration/hello_world_recursive_import.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/hello_world_recursive_import.wsdl -------------------------------------------------------------------------------- /tests/integration/recursive_schema_a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/recursive_schema_a.xsd -------------------------------------------------------------------------------- /tests/integration/recursive_schema_b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/recursive_schema_b.xsd -------------------------------------------------------------------------------- /tests/integration/recursive_schema_c.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/recursive_schema_c.xsd -------------------------------------------------------------------------------- /tests/integration/recursive_schema_main.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/recursive_schema_main.wsdl -------------------------------------------------------------------------------- /tests/integration/test_hello_world_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/test_hello_world_recursive.py -------------------------------------------------------------------------------- /tests/integration/test_http_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/test_http_post.py -------------------------------------------------------------------------------- /tests/integration/test_http_post.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/test_http_post.wsdl -------------------------------------------------------------------------------- /tests/integration/test_recursive_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/integration/test_recursive_schema.py -------------------------------------------------------------------------------- /tests/test_async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_async_client.py -------------------------------------------------------------------------------- /tests/test_async_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_async_transport.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_client_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_client_factory.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_loader.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_pprint.py -------------------------------------------------------------------------------- /tests/test_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_response.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_soap_multiref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_soap_multiref.py -------------------------------------------------------------------------------- /tests/test_soap_xop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_soap_xop.py -------------------------------------------------------------------------------- /tests/test_transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_transports.py -------------------------------------------------------------------------------- /tests/test_wsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsa.py -------------------------------------------------------------------------------- /tests/test_wsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl.py -------------------------------------------------------------------------------- /tests/test_wsdl_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl_arrays.py -------------------------------------------------------------------------------- /tests/test_wsdl_messages_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl_messages_document.py -------------------------------------------------------------------------------- /tests/test_wsdl_messages_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl_messages_http.py -------------------------------------------------------------------------------- /tests/test_wsdl_messages_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl_messages_rpc.py -------------------------------------------------------------------------------- /tests/test_wsdl_no_output_message_part.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl_no_output_message_part.py -------------------------------------------------------------------------------- /tests/test_wsdl_soap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsdl_soap.py -------------------------------------------------------------------------------- /tests/test_wsse_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsse_signature.py -------------------------------------------------------------------------------- /tests/test_wsse_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsse_username.py -------------------------------------------------------------------------------- /tests/test_wsse_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_wsse_utils.py -------------------------------------------------------------------------------- /tests/test_xsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd.py -------------------------------------------------------------------------------- /tests/test_xsd_any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_any.py -------------------------------------------------------------------------------- /tests/test_xsd_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_attributes.py -------------------------------------------------------------------------------- /tests/test_xsd_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_builtins.py -------------------------------------------------------------------------------- /tests/test_xsd_complex_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_complex_types.py -------------------------------------------------------------------------------- /tests/test_xsd_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_element.py -------------------------------------------------------------------------------- /tests/test_xsd_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_extension.py -------------------------------------------------------------------------------- /tests/test_xsd_indicators_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_indicators_all.py -------------------------------------------------------------------------------- /tests/test_xsd_indicators_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_indicators_choice.py -------------------------------------------------------------------------------- /tests/test_xsd_indicators_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_indicators_group.py -------------------------------------------------------------------------------- /tests/test_xsd_indicators_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_indicators_sequence.py -------------------------------------------------------------------------------- /tests/test_xsd_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_integration.py -------------------------------------------------------------------------------- /tests/test_xsd_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_parse.py -------------------------------------------------------------------------------- /tests/test_xsd_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_schemas.py -------------------------------------------------------------------------------- /tests/test_xsd_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_signatures.py -------------------------------------------------------------------------------- /tests/test_xsd_simple_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_simple_types.py -------------------------------------------------------------------------------- /tests/test_xsd_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_types.py -------------------------------------------------------------------------------- /tests/test_xsd_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_union.py -------------------------------------------------------------------------------- /tests/test_xsd_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_validation.py -------------------------------------------------------------------------------- /tests/test_xsd_valueobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_valueobjects.py -------------------------------------------------------------------------------- /tests/test_xsd_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/test_xsd_visitor.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/wsdl_files/claim.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/claim.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/http.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/http.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/soap-enc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/soap-enc.xsd -------------------------------------------------------------------------------- /tests/wsdl_files/soap.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/soap.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/soap_header.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/soap_header.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/soap_import_2.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/soap_import_2.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/soap_import_main.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/soap_import_main.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/soap_transport_err.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/soap_transport_err.wsdl -------------------------------------------------------------------------------- /tests/wsdl_files/test_import_2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/test_import_2.xsd -------------------------------------------------------------------------------- /tests/wsdl_files/xmldsig-core-schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tests/wsdl_files/xmldsig-core-schema.xsd -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mvantellingen/python-zeep/HEAD/tox.ini --------------------------------------------------------------------------------