--- id: suds-py3 version: "1.4.5.0" license: LGPL license_treatment: copyleft maintenance: active --- # suds-py3 — Lightweight SOAP client License: copyleft · Maintenance: active · Downloads: 957.8K/mo ## What it is and what it does suds-py3 is a SOAP client for Python 3 that lets you call web services by loading their WSDL definitions at runtime. Rather than generating code upfront, it reads the service schema on the fly and exposes service methods as Python objects, supporting multiple SOAP binding styles (Document/Literal, RPC/Literal, RPC/Encoded) and basic HTTP authentication. The library handles type objectification, enumerations, and unicode transparently. It is a maintained fork of the original Suds library, which is no longer actively developed. The package has no external runtime dependencies, making it lightweight to install. It is used for integrating with legacy SOAP-based web services and systems that still rely on WSDL-driven service discovery. Use it for: - Calling legacy SOAP web services from Python 3 applications without code generation - Integrating with enterprise systems (Java, .NET WCF) that expose WSDL-based SOAP endpoints - Rapid prototyping against WSDL services where schema changes frequently - Adding HTTP Basic authentication to SOAP service calls - Inspecting and debugging WSDL service definitions at runtime ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. A lightweight SOAP client library for Python 3 that consumes web services by reading WSDL at runtime and providing an object-oriented API for SOAP calls. Yes, if you need to consume SOAP web services in Python 3 and can accept a library that has not been released since 2021. The package is stable, has no dependencies, and the repository remains active. Not recommended if you require active feature development or support for cutting-edge SOAP/WS-Security standards, or if you are building new services (use modern REST/gRPC alternatives instead). ## Install pip install suds-py3 uv add suds-py3 poetry add suds-py3 ## Installing suds-py3 Before you install: Low install friction with no runtime dependencies. Repository is active with recent commits (last commit 2026-04-13), though the package itself has not been released since 2021-11-15. Suitable for stable SOAP integration work where active development is not required. License in practice: Licensed under LGPL (copyleft), which requires that any modifications to this library be shared under compatible terms. Acceptable for internal use and open-source projects, but proprietary software incorporating this package must handle copyleft obligations carefully. Quickstart: pip install suds-py3 from suds.client import Client client = Client('http://localhost:8181/soap/helloservice?wsdl', username='bob', password='catbob') result = client.service.sayHello('bob') Verify before relying: - Whether Python version support is specified beyond 'Python 3' in requires_python field - Current compatibility with modern SOAP implementations and WS-Security standards - Whether the package handles modern TLS/SSL requirements for HTTPS WSDL endpoints ## Package facts - License: LGPL (copyleft) - Python support: unspecified - Install friction: low - Maintenance: active - Downloads: 957.8K/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags SOAP client python, WSDL web services, lightweight soap library, python soap consumer, basic auth soap, document literal RPC encoded, web service client, soap-client, wsdl, legacy-integration [View on SkillFed](https://skillfed.io/packages/suds-py3) · [View on PyPI](https://pypi.org/project/suds-py3/)