Official Python client SDK for SecureFabric - secure, low-latency messaging fabric
Project description
SecureFabric Python Client SDK
Official Python client library for SecureFabric - a secure, low-latency messaging fabric designed for verified senders and end-to-end confidentiality.
Features
- Async/await API - Built on asyncio and gRPC for high performance
- TLS/mTLS support - Secure connections with optional mutual authentication
- Bearer token auth - Simple token-based authentication
- Type hints - Full type annotations for better IDE support
- Production-ready - Comprehensive error handling and logging
Installation
Install from PyPI:
pip install securefabric-client
Install with development dependencies:
pip install securefabric-client[dev]
Quick Start
Basic Publishing
import asyncio
from securefabric import SecureFabricClient
async def main():
# Connect to a SecureFabric node
client = SecureFabricClient(
target="node.example.com:50051",
bearer_token="your-token-here"
)
# Publish a message
success = await client.publish("sensors/temperature", b"22.5C")
print(f"Message published: {success}")
await client.close()
asyncio.run(main())
Subscribing to Topics
import asyncio
from securefabric import SecureFabricClient
async def main():
client = SecureFabricClient(
target="node.example.com:50051",
bearer_token="your-token-here"
)
# Subscribe with callback
def handle_message(envelope):
print(f"Received from {envelope.topic}: {envelope.payload.decode()}")
# This runs indefinitely - use Ctrl+C to stop
await client.subscribe("sensors/#", handle_message)
asyncio.run(main())
Streaming Subscription
import asyncio
from securefabric import SecureFabricClient
async def main():
client = SecureFabricClient(
target="node.example.com:50051",
bearer_token="your-token-here"
)
# Subscribe as async iterator
async for envelope in client.subscribe_stream("sensors/#"):
print(f"Topic: {envelope.topic}")
print(f"Payload: {envelope.payload.decode()}")
print(f"Sender: {envelope.pubkey.hex()}")
print(f"Sequence: {envelope.seq}")
print("---")
asyncio.run(main())
Using mTLS (Mutual TLS)
import asyncio
from securefabric import SecureFabricClient
async def main():
# Load certificates
with open("ca.crt", "rb") as f:
ca_cert = f.read()
with open("client.crt", "rb") as f:
client_cert = f.read()
with open("client.key", "rb") as f:
client_key = f.read()
# Connect with mTLS
client = SecureFabricClient(
target="node.example.com:50051",
ca_cert=ca_cert,
client_cert=client_cert,
client_key=client_key,
)
await client.publish("secure/topic", b"sensitive data")
await client.close()
asyncio.run(main())
Getting Node Statistics
import asyncio
from securefabric import SecureFabricClient
async def main():
client = SecureFabricClient(
target="node.example.com:50051",
bearer_token="your-token-here"
)
stats = await client.stats()
print(f"Connected peers: {stats.peers}")
print(f"P95 latency: {stats.p95_latency_ms}ms")
print(f"Node version: {stats.version}")
print(f"Git SHA: {stats.git_sha}")
await client.close()
asyncio.run(main())
Configuration
Environment Variables
The client can be configured via environment variables:
export SF_ENDPOINT="node.example.com:50051"
export SF_TOKEN="your-bearer-token"
export SF_CA_CERT_PATH="/path/to/ca.crt"
export SF_CLIENT_CERT_PATH="/path/to/client.crt"
export SF_CLIENT_KEY_PATH="/path/to/client.key"
Connection Options
| Parameter | Type | Default | Description |
|---|---|---|---|
target |
str | required | Node address as "host:port" |
tls |
bool | True | Enable TLS encryption |
ca_cert |
bytes | None | CA certificate in PEM format |
client_cert |
bytes | None | Client certificate for mTLS |
client_key |
bytes | None | Client private key for mTLS |
bearer_token |
str | None | Bearer token for authentication |
insecure |
bool | False | Allow insecure connections (not recommended) |
Development
Setup
# Clone the repository
git clone https://github.com/NodeCube/securefabric-public.git
cd securefabric-public/sdk/python
# Install in editable mode with dev dependencies
pip install -e ".[dev]"
Generate Protobuf Stubs
The repository includes pre-generated protobuf files, but you can regenerate them:
python -m grpc_tools.protoc \
-I../../specs \
--python_out=securefabric \
--grpc_python_out=securefabric \
--pyi_out=securefabric \
../../specs/securefabric.proto
Running Tests
# Run unit tests
pytest tests/
# Run with coverage
pytest --cov=securefabric tests/
# Type checking
mypy securefabric/
# Linting
black --check securefabric/
Building and Publishing
# Install build tools
pip install build twine
# Build distribution packages
python -m build
# Upload to TestPyPI
python -m twine upload --repository testpypi dist/*
# Upload to PyPI
python -m twine upload dist/*
API Reference
SecureFabricClient
The main client class for interacting with SecureFabric nodes.
Methods
__init__(target, tls=True, ca_cert=None, client_cert=None, client_key=None, bearer_token=None, insecure=False)
Initialize a new client instance.
async publish(topic: str, payload: Union[bytes, str], aad: Optional[bytes] = None) -> bool
Publish a message to a topic. Returns True if successful.
async subscribe(topic: str, callback: Callable[[Envelope], None]) -> None
Subscribe to a topic with a callback function. Runs indefinitely.
async subscribe_stream(topic: str) -> AsyncIterator[Envelope]
Subscribe to a topic as an async iterator.
async stats() -> StatsResp
Get node statistics and metadata.
async close() -> None
Close the connection and cleanup resources.
Envelope Structure
Messages are wrapped in an Envelope protobuf with the following fields:
pubkey(bytes): Ed25519 public key of sender (32 bytes)sig(bytes): Signature over aad||header||payload (64 bytes)nonce(bytes): XChaCha nonce (24 bytes)aad(bytes): Additional Authenticated Datapayload(bytes): Message content (plaintext or encrypted)seq(int): Strictly increasing sequence numbermsg_id(str): Unique message identifierkey_version(int): E2E topic key versiontopic(str): Message topic
Security Considerations
- Always use TLS in production - Set
tls=Trueand provideca_cert - Protect bearer tokens - Never commit tokens to version control
- Use mTLS for sensitive applications - Provides mutual authentication
- Validate envelope signatures - Check
sigfield againstpubkey - Handle sequence numbers - Detect replay attacks using
seqfield
Troubleshooting
Connection Errors
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with: UNAVAILABLE>
Solution: Check that:
- The node address is correct
- TLS certificates are valid
- Network connectivity is available
- The node is running
Authentication Errors
grpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with: UNAUTHENTICATED>
Solution: Verify your bearer token or client certificates are correct.
Import Errors
ImportError: cannot import name 'securefabric_pb2'
Solution: Regenerate protobuf stubs using the command in the Development section.
Support
- Documentation: https://secure-fabric.io/docs
- Issues: https://github.com/NodeCube/securefabric-public/issues
- Email: contact@secure-fabric.io
License
This SDK is licensed under the Apache License 2.0. See LICENSE for details.
The SecureFabric production node (distributed separately) may have different licensing terms.
Contributing
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
By contributing, you agree that your contributions will be licensed under the Apache License 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file securefabric_client-0.1.0.tar.gz.
File metadata
- Download URL: securefabric_client-0.1.0.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14ab09c5d0c7cd46a40413502620b087e12db5432382f9cbaf036ca2fae44300
|
|
| MD5 |
3e05064d66e105cc3b75be51fd86bd91
|
|
| BLAKE2b-256 |
f5cb94d25d1b09d3bd5b25907f6b9b5b52d0a68dc94378277ab4973546cb2dbb
|
File details
Details for the file securefabric_client-0.1.0-py3-none-any.whl.
File metadata
- Download URL: securefabric_client-0.1.0-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24b242d82628272a68f322ebdf6e7169f01de21e714693a711322506908c304c
|
|
| MD5 |
d92bd877d1f690175a96526f55fac0d1
|
|
| BLAKE2b-256 |
6e9a44973d99ba84aa9ffd4b891a4e95c32a6b5c51efbe920591bb0c12ad47d0
|