Python SDK for the Kailash container-node architecture
Project description
Kailash Python SDK
Enterprise-Grade Workflow Orchestration Platform
Build production-ready applications with zero-config database operations, multi-channel platforms, and comprehensive AI integration. From rapid prototyping to enterprise deployment.
๐ฅ Latest Release: v0.9.5 (July 31, 2025)
PythonCodeNode Serialization Stability & Testing
๐งช Comprehensive Regression Test Suite (TODO-129)
- Added: 33 unit tests validating PythonCodeNode serialization behavior and JSON compatibility
- Added: 6 integration tests with real infrastructure using only allowed modules
- Added: 6 E2E tests for complete business workflows and multi-channel consistency
- Impact: Ensures serialization fix from commit 2fcf8591 (June 11, 2025) stays stable
๐ Documentation Clarifications
- Updated: PythonCodeNode output structure documentation (all outputs wrapped in "result" key)
- Enhanced: Serialization consistency notes for multi-channel deployment
- Improved: Testing patterns for node serialization validation
๐ก๏ธ Stability Improvements
- Focus: Testing and documentation release to ensure PythonCodeNode serialization remains stable
- Validation: Complete test coverage for serialization edge cases
- Quality: Comprehensive regression prevention for critical workflow components
Full Changelog | Core SDK 0.9.5 | DataFlow 0.3.4
๐ฏ What Makes Kailash Different
๐๏ธ Complete Application Framework
Not just a toolkit - complete production-ready applications built on enterprise-grade infrastructure:
- DataFlow: Zero-config database operations with MongoDB-style queries
- Nexus: Multi-channel platform (API + CLI + MCP) from single codebase
- AI Registry: Advanced RAG with 47+ specialized nodes
- User Management: Enterprise RBAC system with comprehensive security
๐ Performance & Scale
- 11x faster test execution (117s โ 10.75s) with smart isolation
- 31.8M operations/second query performance baseline
- 30,000+ iterations/second cyclic workflow execution
- 100% test pass rate across 2,400+ tests
๐ค AI-First Architecture
- A2A Google Protocol for enterprise multi-agent coordination
- Real MCP execution by default for all AI agents
- 47+ specialized RAG nodes for document processing
- Semantic memory systems with context-aware retrieval
- Hybrid search algorithms for intelligent agent discovery
- Self-organizing agent pools with advanced coordination patterns
๐๏ธ Project Architecture
Three-Layer Architecture
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๐จ Studio UI Layer โ
โ Visual workflow builder (coming soon) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๐ข Application Framework โ
โ DataFlow โ Nexus โ AI Registry โ User Management โ... โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๐ฏ Core SDK Foundation โ
โ 115+ Nodes โ Workflows โ Runtime โ Security โ Testing โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Current Project Structure
kailash_python_sdk/
โโโ src/kailash/ # Core SDK - 115+ nodes, workflows, runtime
โโโ apps/ # Complete Applications
โ โโโ kailash-dataflow/ # Zero-config database operations
โ โโโ kailash-nexus/ # Multi-channel platform
โ โโโ kailash-mcp/ # Enterprise MCP platform
โ โโโ ai_registry/ # Advanced RAG capabilities
โ โโโ user_management/ # Enterprise RBAC system
โโโ tests/ # 2,400+ tests (100% pass rate)
โโโ docs/ # Comprehensive documentation
โโโ examples/ # Feature validation examples
๐ Quick Start
Installation Options
# Core SDK only
pip install kailash
# With complete app frameworks
pip install kailash[dataflow,nexus] # Database + multi-channel
pip install kailash[all] # Everything
# Or install apps directly
pip install kailash-dataflow # Zero-config database framework
pip install kailash-nexus # Multi-channel platform
DataFlow: Zero-Config Database Operations
from dataflow import DataFlow
# Zero-configuration database operations
app = DataFlow()
# MongoDB-style queries across any database
users = app.query("users").where({"age": {"$gt": 18}}).limit(10)
# Redis-powered caching with smart invalidation
cached_result = app.cache().get("user_stats",
lambda: app.query("users").aggregate([
{"$group": {"_id": "$department", "count": {"$sum": 1}}}
])
)
# Start enterprise API server
app.start() # Automatic API generation, monitoring, health checks
Nexus: Multi-Channel Platform
from nexus import Nexus
# Single codebase โ API + CLI + MCP
app = Nexus()
# Register workflow once, available on all channels
@app.workflow
def process_data(input_data):
return {"processed": len(input_data)}
# Zero-config startup
app.start()
# Now available as:
# - REST API: POST /workflows/process_data
# - CLI: nexus run process_data
# - MCP: AI agents can call process_data tool
A2A Multi-Agent Coordination
from kailash.workflow.builder import WorkflowBuilder
from kailash.runtime.local import LocalRuntime
# Build A2A coordination workflow
workflow = WorkflowBuilder()
workflow.add_node("A2ACoordinatorNode", "coordinator", {
"use_google_protocol": True,
"enable_semantic_memory": True,
"delegation_strategy": "skill_based"
})
workflow.add_node("HybridSearchNode", "discovery", {
"strategies": ["semantic", "keyword", "skill_based"],
"adaptive_optimization": True
})
workflow.add_node("SemanticMemoryNode", "memory", {
"embedding_provider": "openai",
"memory_type": "long_term",
"context_window": 8192
})
# Connect for intelligent agent coordination
workflow.add_connection("coordinator", "discovery", "agent_request", "search_query")
workflow.add_connection("discovery", "memory", "agent_matches", "context")
# Execute with enterprise monitoring
runtime = LocalRuntime()
results, run_id = runtime.execute(workflow.build())
๐ฏ Key Features
๐งช Testing Excellence
- 2,400+ tests with 100% pass rate
- 11x performance improvement (117s โ 10.75s execution)
- Docker integration for real PostgreSQL, Redis, MongoDB
- Smart isolation without process forking overhead
๐ข Enterprise Ready
- Multi-tenant architecture with complete isolation
- RBAC/ABAC security with fine-grained permissions
- Audit logging with compliance frameworks (GDPR, CCPA)
- Distributed transactions with Saga/2PC patterns
- Circuit breaker and resilience patterns
๐ค AI Integration
- 115+ production nodes including 47+ specialized RAG nodes
- Real MCP execution by default for all AI agents
- Self-organizing agent pools with intelligent coordination
- Complete LLM integration with embeddings and vector search
โก Performance & Scale
- 31.8M operations/second query performance baseline
- Connection pooling with automatic resource management
- Redis caching with intelligent invalidation patterns
- Async/await throughout with proper separation
๐๏ธ Node Ecosystem (115+ Nodes)
Core Categories
- Data Nodes: CSVReaderNode, AsyncSQLDatabaseNode, QueryBuilderNode, QueryCacheNode
- AI Nodes: LLMAgentNode, IterativeLLMAgentNode, EmbeddingGeneratorNode, SelfOrganizingAgentNode
- A2A Nodes: A2ACoordinatorNode, HybridSearchNode, AdaptiveSearchNode, SemanticMemoryNode, StreamingAnalyticsNode
- RAG Nodes: 47+ specialized nodes for document processing and retrieval
- Security Nodes: ThreatDetectionNode, AuditLogNode, AccessControlManager
- Monitoring Nodes: TransactionMetricsNode, DeadlockDetectorNode, PerformanceAnomalyNode
- Transaction Nodes: DistributedTransactionManagerNode, SagaCoordinatorNode
Advanced Features
- A2A Communication: Google Protocol-based multi-agent coordination
- Semantic Memory: Long-term memory management for agent interactions
- Hybrid Search: Multi-strategy agent discovery and matching
- Cyclic Workflows: CycleBuilder API with convergence detection
- Distributed Transactions: Automatic Saga/2PC pattern selection
- Real-time Monitoring: WebSocket streaming with performance metrics
- Enterprise Security: Multi-factor auth, threat detection, compliance
๐ Performance Metrics
Recent Achievements
- 11x faster test execution: 117s โ 10.75s with smart isolation
- 100% test pass rate: 2,400+ tests across all categories
- 31.8M operations/second: Query performance baseline
- 30,000+ iterations/second: Cyclic workflow execution
Enterprise Benchmarks
- Query Cache: 99.9% hit rate with intelligent invalidation
- Connection Pooling: 10,000+ concurrent connections
- MCP Integration: 407 tests with 100% pass rate
- Security: Zero vulnerabilities in production deployment
๐ Applications Built with Kailash
1. DataFlow - Zero-Config Database Platform (v0.3.3)
pip install kailash-dataflow
- MongoDB-style queries across PostgreSQL, MySQL, SQLite
- Redis caching with enterprise-grade invalidation
- Automatic API generation with OpenAPI documentation
- 4 production examples with complete deployment guides
- Latest: v0.3.3 - Critical connection parsing fix for special characters in passwords
2. Nexus - Multi-Channel Platform (v1.0.3)
pip install kailash-nexus
- Unified API, CLI, and MCP from single codebase
- Enterprise orchestration with multi-tenancy
- Session management with cross-channel synchronization
- 105 tests with comprehensive validation
- Latest: v1.0.3 - Production-ready release with enhanced stability
3. AI Registry - Advanced RAG Platform
pip install kailash-ai-registry
- 47+ specialized RAG nodes for document processing
- Advanced retrieval with semantic search and re-ranking
- Multi-modal support with image and text processing
- Enterprise deployment with scalable architecture
4. User Management - Enterprise RBAC
pip install kailash-user-management
- Complete RBAC system with role hierarchy
- Multi-factor authentication with enterprise integration
- Audit logging with compliance frameworks
- Django-style capabilities built on SDK architecture
๐งช Testing & Quality
Comprehensive Test Suite
# All tests (2,400+ tests)
pytest
# Fast unit tests (11x faster execution)
pytest tests/unit/ --timeout=1
# Integration tests with Docker
pytest tests/integration/ --timeout=5
# End-to-end scenarios
pytest tests/e2e/ --timeout=10
Test Infrastructure
- Docker Integration: Real PostgreSQL, Redis, MongoDB for testing
- Smart Isolation: Fixture-based isolation without process forking
- Performance Monitoring: Automated benchmarks and regression detection
- 100% Pass Rate: Comprehensive fixes across all test categories
๐ก๏ธ Security & Compliance
Enterprise Security
- Multi-factor Authentication: TOTP, WebAuthn, SMS integration
- Threat Detection: Real-time analysis with behavior monitoring
- Access Control: Fine-grained RBAC/ABAC with policy engines
- Audit Logging: Comprehensive trails with integrity verification
Compliance Frameworks
- GDPR/CCPA: Built-in data protection and privacy controls
- SOX: Financial reporting controls and audit trails
- HIPAA: Healthcare data protection patterns
- Multi-tenant Isolation: Complete tenant-aware operations
๐ Documentation & Resources
For Users
- SDK Users Guide: Complete workflow development guide
- Node Selection Guide: Smart node selection with decision trees
- Enterprise Patterns: Production deployment patterns
- API Documentation: Complete API reference
For Contributors
- SDK Contributors Guide: Internal SDK development
- Architecture Decisions: ADRs and design decisions
- Testing Guide: 3-tier testing strategy
Quick References
- Cheatsheet: 53 copy-paste patterns
- Common Mistakes: Error patterns and solutions
- Performance Guide: Optimization patterns
๐ข Production Deployment
Container Deployment
# Export workflow to container format
python -c "
from kailash.utils.export import export_workflow
export_workflow(workflow, 'production.yaml', format='kailash')
"
# Deploy to Kailash platform
kailash deploy production.yaml --environment prod
Monitoring & Observability
from kailash.visualization import DashboardServer
# Real-time monitoring dashboard
server = DashboardServer(port=8080)
server.start()
# Open http://localhost:8080 for live metrics
Enterprise Features
- Multi-tenant deployment with complete isolation
- Distributed transactions with automatic recovery
- Circuit breaker patterns for resilience
- Health monitoring with automated alerting
๐ค Contributing
We use a Claude Code-driven workflow for all development:
New Team Member?
Start Here โ NEW_TEAM_MEMBER.md
Development Workflow
# Clone and setup
git clone https://github.com/integrum/kailash-python-sdk.git
cd kailash-python-sdk
uv sync
# Run tests (2,400+ tests)
pytest tests/unit/ --timeout=1 # Fast unit tests
pytest tests/integration/ --timeout=5 # Integration tests
pytest tests/e2e/ --timeout=10 # End-to-end tests
# Code quality
black .
isort .
ruff check .
Claude Code Workflow
All project management through conversational AI:
- No manual TODO editing - Claude Code handles all updates
- No direct GitHub issues - Created through planning sessions
- All progress tracked - Through natural conversation
See Contributing Guide and sdk-contributors/CLAUDE.md.
๐ Project Status
โ v0.8.4 - A2A Google Protocol Enhancement
- Advanced Agent Coordination: A2ACoordinatorNode with Google Protocol patterns
- Hybrid Search System: Multi-strategy agent discovery and matching
- Semantic Memory: Long-term memory management for agent interactions
- Real-time Analytics: Streaming performance monitoring for A2A workflows
- Backward Compatible: Seamless integration with existing implementations
- Production Ready: Enterprise-grade multi-agent coordination patterns
โ v0.8.1 - Complete App Framework
- Complete Application Framework: DataFlow, Nexus, AI Registry, User Management
- PyPI Integration: All packages available with proper extras support
- Performance Breakthrough: 11x faster test execution
- Testing Excellence: 2,400+ tests with 100% pass rate
- Enterprise Ready: Production deployment patterns
โ v0.7.0 - Major Framework Release
- DataFlow Platform: Zero-config database operations
- Nexus Platform: Multi-channel orchestration
- AI Registry: Advanced RAG capabilities
- User Management: Enterprise RBAC system
- Testing Infrastructure: Docker integration, comprehensive validation
๐ง Roadmap
- Visual Workflow Builder: Studio UI for drag-and-drop workflow creation
- Advanced Analytics: ML-powered workflow optimization
- Cloud Integration: Native AWS/GCP/Azure deployment
- Mobile SDKs: iOS and Android workflow execution
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ Acknowledgments
Built with โค๏ธ by the Integrum team for the Kailash ecosystem.
Special recognition for the 11x performance breakthrough and 100% test pass rate achieved through innovative engineering and comprehensive testing strategies.
Ready to build enterprise-grade applications?
Install from PyPI โข
Documentation โข
Examples โข
GitHub
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 kailash-0.9.6.tar.gz.
File metadata
- Download URL: kailash-0.9.6.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74b117612042f2a4019cd8a9a2e776d5d2a75c56d9c017ceb269cce8c8825670
|
|
| MD5 |
4249e01d3e616bf0d5c8b54c1d190fd7
|
|
| BLAKE2b-256 |
a01a10f5749934fb8ccbd0dc26681388dddd94c63063572f768b5d2ca3fbf63e
|
File details
Details for the file kailash-0.9.6-py3-none-any.whl.
File metadata
- Download URL: kailash-0.9.6-py3-none-any.whl
- Upload date:
- Size: 1.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3487a41372e5c97899a002640ddb285899332b83922f8d40c22d735e1862f4a5
|
|
| MD5 |
eeb26ca5e01c7519f47c6e111dd5b210
|
|
| BLAKE2b-256 |
c5f0c57da6969db7d60b1a90ee2487b9100fcbb2108ad457468b010ce6670b6b
|