skillfed

suds-community

Lightweight SOAP client (community fork)

suds-community v1.2.0 4.1M downloads/30d#2,382 on PyPI190
Copyleft license (specified using classifiers) Active released

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-community

uv

uv add suds-community

poetry

poetry add suds-community

Installing 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

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)Natural Language :: EnglishOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3 :: OnlyProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Topic :: Internet

Tags

SOAP client libraryweb service client pythonWSDL runtime parsingRPC-like SOAP interfacelightweight SOAP consumerdocument literal RPC encodedSOAP message handling
soap-clientweb-serviceswsdl-runtime

More Internet packages