suds-community
Lightweight SOAP client (community fork)
What it is and what it does
Suds-community is a maintained fork of the original suds SOAP client library, designed to consume SOAP-based web services without code generation. It reads WSDL documents at runtime to understand service structure, then provides a simple object-oriented API for invoking remote methods. The library abstracts away WSDL complexity—whether the service uses Document/Literal, RPC/Literal, or RPC/Encoded binding styles, the method signatures remain consistent from the caller's perspective.
The primary entry point is the Client class, which takes a WSDL URL and exposes two sub-namespaces: service (a proxy for invoking remote operations) and factory (for constructing complex types defined in the WSDL). It supports both simple scalar arguments and complex object types, with logging hooks for debugging SOAP messages, HTTP headers, and schema digestion. The package has no external runtime dependencies and targets currently maintained Python versions (3.7+).
Use it for:
- Integrate with legacy SOAP-based enterprise web services without writing WSDL-to-Python code generators.
- Build quick integration scripts or microservices that consume SOAP endpoints dynamically at runtime.
- Debug or test SOAP services by inspecting service descriptions and invoking methods interactively.
- Migrate from the unmaintained original suds package to a community-maintained fork with active bug fixes.
- Consume multiple SOAP services in a single application by instantiating separate Client objects for each WSDL.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Lightweight SOAP-based web service client that reads WSDL at runtime and provides an RPC-like interface to invoke remote service methods without requiring code generation.
Yes. Suds-community is a stable, actively maintained SOAP client with no external dependencies, low install friction, and broad Python version support. It fills a genuine need for lightweight SOAP consumption in Python. The copyleft license is standard for this class of library and poses no barrier for internal or open-source use. No known vulnerabilities. Install if you need to consume SOAP services and prefer runtime WSDL parsing over code generation.
Install
suds-community on PyPI
pip
pip install suds-communityuv
uv add suds-communitypoetry
poetry add suds-communityInstalling suds-community
Before you install
Low friction installation via pip or setuptools. Actively maintained community fork with recent releases; last commit 2026-02-25. No runtime dependencies. Supports Python 3.7 through 3.10 and targets currently maintained Python versions.
License in practice
Licensed under LGPL (copyleft). Derivative works and modifications must be released under compatible terms; linking in proprietary code requires careful license review.
Quickstart
pip install suds-community
from suds.client import Client
url = 'http://example.com/service?wsdl'
client = Client(url)
result = client.service.someMethod('arg1', 'arg2')
print(result)
Requires a valid WSDL URL accessible at runtime; WSDL is fetched and parsed when Client is instantiated.
Verify before relying
- Whether the package handles modern SOAP security standards (WS-Security, mutual TLS) beyond basic HTTP transport.
- Performance characteristics with large WSDL schemas or high-volume service calls.
- Compatibility with SOAP 1.2 (fact sheet mentions SOAP style bindings but does not specify version coverage).
Package facts
| License | (specified using classifiers) (copyleft) |
| Python support | supports the current Python release (>=3.7) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 720 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 4,099,637/month — #2,382 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: suds_community-1.2.0-py3-none-any.whl
Keywords: SOAP, web, service, client
Tags
More Internet packages
Botocore provides low-level, data-driven access…
permissive · top 100 on PyPI
aiobotocoreProvides an async client for AWS services using…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
filelockProvides a platform-independent file locking…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
googleapis-common-protosProvides common Protocol Buffer message…
permissive · top 100 on PyPI
spyneSpyne is a framework for building remote…
copyleft · top 15,000 on PyPI
sudsSuds is a lightweight SOAP client library that…
copyleft · top 15,000 on PyPI
suds-py3A lightweight SOAP client library for Python 3…
copyleft · top 5,000 on PyPI
suds-jurkoProvides a lightweight SOAP client for calling…
copyleft · top 15,000 on PyPI
zeepZeep is a Python SOAP client that handles SOAP…
permissive · top 1,000 on PyPI
xsdataxsdata generates Python dataclasses from XML…
permissive · top 5,000 on PyPI
netsuitesdkA Python SDK that wraps NetSuite's SOAP web…
permissive · top 15,000 on PyPI
polarionProvides a Python client for interacting with…
permissive · top 15,000 on PyPI
Salesforce-FuelSDK-SansProvides Python bindings to Salesforce…
permissive · top 15,000 on PyPI
onvif-zeep-asyncAsync Python client for ONVIF IP cameras using…
permissive · top 15,000 on PyPI