solace-pubsubplus
Solace Messaging API for Python.
What it is and what it does
Solace Messaging API for Python is a client library that connects Python applications to Solace Event Brokers. It provides four primary abstractions: MessagingService (connection management), MessagePublisher (direct or persistent send), MessageReceiver (direct or persistent receive), and Message (payload wrapper). The library supports two delivery modes—direct messaging for low-latency fire-and-forget patterns, and persistent messaging for guaranteed delivery even when receivers are offline. Messages can be queued on the broker and acknowledged by receivers.
The package is built on platform-specific wheels for macOS, Linux (x86_64 and ARM), and Windows, with no external runtime dependencies. It requires Python 3.6 or later and cannot coexist with Python's multiprocessing module in the same application. The API is maintained by Solace Corporation and documented at docs.solace.com.
Use it for:
- Build event-driven microservices that publish and subscribe to topics on a Solace Event Broker.
- Implement reliable message queuing where offline receivers can retrieve stored messages upon reconnection.
- Create low-latency pub-sub applications using DirectMessagePublisher for messages that don't require persistence.
- Integrate Python applications into existing Solace messaging infrastructure for enterprise event streaming.
- Develop multi-pattern messaging workflows combining direct and persistent delivery in the same application.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Solace Messaging API for Python provides client access to Solace Event Brokers, enabling publish-subscribe and queued message delivery patterns with support for both direct (fire-and-forget) and persistent (guaranteed) messaging.
Yes, if you are already using or planning to deploy Solace Event Brokers and need Python client connectivity. The library is production-stable, permissively licensed, and has no runtime dependencies. However, the aging maintenance status (252 days since last release) and the multiprocessing incompatibility are real constraints—verify that your deployment model and Python patterns align before committing.
Install
solace-pubsubplus on PyPI
pip
pip install solace-pubsubplusuv
uv add solace-pubsubpluspoetry
poetry add solace-pubsubplusInstalling solace-pubsubplus
Before you install
Medium install friction due to platform-specific wheels (macOS, Linux, Windows, ARM variants). No runtime dependencies to manage. Maintenance status is aging—252 days since last release—though the package is marked Production/Stable and supports current Python versions.
License in practice
Apache 2.0 is permissive; you can use this package in commercial and proprietary projects with minimal restrictions, provided you include a copy of the license and note any modifications.
Quickstart
pip install solace-pubsubplus
from solace.messaging.messaging_service import MessagingService
from solace.messaging.publisher.message_publisher import DirectMessagePublisher
service = MessagingService.builder().build()
service.connect()
publisher = service.create_direct_message_publisher_builder().build()
publisher.publish(message, destination)
Python 3.6 or greater required. Cannot be used in applications that use the Python multiprocessing module.
Verify before relying
- Exact feature parity and performance characteristics compared to other Solace SDKs or competing message brokers.
- Whether the aging maintenance status (252 days) reflects active support or reduced development velocity.
- Community adoption and real-world production usage patterns beyond download counts.
Package facts
| License | Apache 2.0 (permissive) |
| Python support | supports the current Python release (>=3.6) |
| Install friction | medium — platform-specific wheel |
| Runtime dependencies | none |
| Maintenance | aging — 252 days since the last release |
| First released | |
| Downloads | 265,177/month — #8,328 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: solace_pubsubplus-1.11.0-py36-none-macosx_11_0_universal2.whl; solace_pubsubplus-1.11.0-py36-none-manylinux_2_12_x86_64.whl; solace_pubsubplus-1.11.0-py36-none-manylinux_2_17_aarch64.whl; solace_pubsubplus-1.11.0-py36-none-musllinux_1_2_x86_64.whl; solace_pubsubplus-1.11.0-py36-none-win32.whl; solace_pubsubplus-1.11.0-py36-none-win_amd64.whl
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
google-cloud-pubsublitePython client library for Google Cloud Pub/Sub…
permissive · top 5,000 on PyPI
gcloud-aio-pubsubAsyncio and threadsafe Python client for Google…
permissive · top 15,000 on PyPI
oslo.messagingOslo Messaging provides a unified API for RPC…
permissive · top 15,000 on PyPI
pubnubPubNub Python SDK provides real-time…
unclear · top 15,000 on PyPI
PypubsubProvides a publish-subscribe messaging system…
permissive · top 15,000 on PyPI
python-qpid-protonProvides Python bindings to Qpid Proton, an…
permissive · top 15,000 on PyPI
azure-servicebusAzure Service Bus client library for Python…
unclear · top 1,000 on PyPI
firebase-messagingReceives push notifications sent via Firebase…
permissive · top 15,000 on PyPI
google-cloud-pubsubPython client library for Google Cloud Pub/Sub,…
permissive · top 1,000 on PyPI
nats-pyAn asyncio Python client for connecting to and…
permissive · top 5,000 on PyPI