Skip to main content

Enterprise-grade Python framework with AI-powered performance optimization, 24 serialization formats, military-grade security, automatic memory leak prevention, circuit breakers, and production monitoring - replaces 50+ dependencies

Project description

๐Ÿš€ XWSystem: The All-in-One Python Library You've Been Waiting For

Stop importing 20+ libraries. Import ONE.


Company: eXonware.com
Author: Eng. Muhammad AlShehri
Email: connect@exonware.com
Version: 0.0.1.359 Updated: September 12, 2025

๐ŸŽฏ Why XWSystem?

XWSystem is the enterprise-grade Python framework that replaces 50+ dependencies with AI-powered performance optimization, military-grade security, 24 serialization formats, automatic memory leak prevention, circuit breakers, and production-ready monitoring - everything you need for bulletproof Python applications in one zero-config install.

๐Ÿ“ฆ Dual Installation Options

Choose your preferred installation method:

Option 1: Enterprise Package (Recommended for Teams)

pip install exonware-xwsystem

PyPI: https://pypi.org/project/exonware-xwsystem/

Option 2: Simple Package (Quick & Easy)

pip install xwsystem

PyPI: https://pypi.org/project/xwsystem/

Both packages are identical - same functionality, same imports, same everything!

๐Ÿ”ฅ The Problem We Solve

# Instead of this mess:
import json, yaml, toml, csv, pickle, msgpack
import threading, queue, asyncio
import hashlib, secrets, cryptography
import requests, urllib3, httpx
import pathlib, os, tempfile
# ... and 15 more imports

# Just do this:
from exonware.xwsystem import *
# Or more simple:
from xwsystem import *

โšก 24 Serialization Formats in One Import

Text Formats (Human-Readable - 8 formats): JSON, YAML, TOML, XML, CSV, ConfigParser, FormData, Multipart

Binary Formats (High-Performance - 9 formats): BSON, MessagePack, CBOR, Pickle, Marshal, SQLite3, DBM, Shelve, Plistlib

๐Ÿ†• Schema-Based Enterprise Formats (7 formats): Apache Avro, Protocol Buffers, Apache Thrift, Apache Parquet, Apache ORC, Cap'n Proto, FlatBuffers

# Same API, any format
data = {"users": 1000, "active": True}

JsonSerializer().dumps(data)      # {"users":1000,"active":true}
YamlSerializer().dumps(data)      # users: 1000\nactive: true
MsgPackSerializer().dumps(data)   # Binary: 47% smaller than JSON
BsonSerializer().dumps(data)      # MongoDB-ready binary

# ๐Ÿ†• NEW: Enterprise schema-based formats
AvroSerializer().dumps(data)      # Apache Avro - schema evolution
ProtobufSerializer().dumps(data)  # Protocol Buffers - Google's format
ParquetSerializer().dumps(data)   # Apache Parquet - columnar analytics

๐Ÿ›ก๏ธ Production-Ready Security & Threading

# Thread-safe operations out of the box
factory = ThreadSafeFactory()
factory.register("handler", MyHandler, thread_safe=True)

# Secure path validation
validator = PathValidator("/safe/directory")
safe_path = validator.validate_path("user/config.json")  # Prevents path traversal

# Atomic file operations (no data loss)
with AtomicFileWriter("critical.json") as writer:
    writer.write(data)  # Either fully writes or fails cleanly

๐Ÿค– AI-Level Performance Monitoring & Auto-Optimization

# ADAPTIVE PERFORMANCE ENGINE - This is mind-blowing!
from exonware.xwsystem import PerformanceModeManager, PerformanceMode

# AI-powered performance optimization
manager = PerformanceModeManager(PerformanceMode.DUAL_ADAPTIVE)
manager.set_mode(PerformanceMode.ADAPTIVE)  # Machine learning optimization!

# Real-time memory leak detection & auto-cleanup
memory_monitor = MemoryMonitor(enable_auto_cleanup=True)
memory_monitor.start_monitoring()  # Prevents memory leaks automatically!

# Circuit breaker pattern for resilience
@circuit_breaker(failure_threshold=5, recovery_timeout=30)
async def external_api_call():
    return await client.get("/api/data")

๐Ÿง  Advanced Data Structure Intelligence

# Circular reference detection with path tracking
detector = CircularReferenceDetector()
if detector.is_circular(complex_data):
    safe_data = detector.resolve_circular_refs(data, placeholder="<CIRCULAR>")

# Smart tree walking with custom processors
walker = TreeWalker(max_depth=1000, track_visited=True)
processed = walker.walk_and_process(data, my_processor)

# Advanced validation with security checks
validator = SafeTypeValidator()
validator.validate_untrusted_data(user_data, max_depth=100)

๐Ÿ” Military-Grade Security Suite

# Enterprise cryptography with multiple algorithms
symmetric = SymmetricEncryption()
asymmetric, private_key, public_key = AsymmetricEncryption.generate_key_pair(4096)

# Secure storage with encryption + integrity
secure_storage = SecureStorage()
secure_storage.store("api_keys", {"stripe": "sk_live_..."})
api_keys = secure_storage.retrieve("api_keys")

# Advanced hashing with BLAKE2b + HMAC
hash_blake2b = SecureHash.blake2b(data, key=secret_key)
hmac_signature = SecureHash.hmac_sha256(data, secret_key)

๐Ÿš€ Object Pools & Resource Management

# High-performance object pooling
db_pool = ObjectPool(
    factory=DatabaseConnection,
    max_size=50,
    reset_method="reset"
)

with db_pool.get_object() as conn:
    result = conn.execute("SELECT * FROM users")
    # Connection auto-returned to pool

# Thread-safe singletons
@ThreadSafeSingleton
class ConfigManager:
    def __init__(self):
        self.config = load_config()

๐Ÿ† Why XWSystem is a Game Changer

โœ… One dependency replaces 50+ - psutil, cryptography, requests, PyYAML, msgpack, cbor2, fastavro, protobuf, pyarrow, etc.
โœ… AI-powered performance optimization - Adaptive learning engines built-in
โœ… Military-grade security - Enterprise crypto, secure storage, path validation
โœ… Memory leak prevention - Automatic detection and cleanup
โœ… Circuit breakers & resilience - Production-ready error recovery
โœ… Object pooling & resource management - High-performance patterns
โœ… 24 serialization formats - More than any other Python library (including 7 enterprise schema formats)
โœ… Thread-safe everything - Concurrent programming made easy
โœ… Zero-config - Works perfectly out of the box

๐ŸŽฏ Perfect For:

  • ๐ŸŒ Web APIs & Microservices - 24 serialization formats + resilient HTTP client + circuit breakers
  • ๐Ÿ” Enterprise Applications - Military-grade crypto + secure storage + path validation + schema formats
  • ๐Ÿ“Š Data Processing Pipelines - High-performance binary formats + Parquet/ORC columnar storage + memory optimization
  • ๐Ÿค– Machine Learning Systems - Adaptive performance tuning + memory leak prevention + Avro/Protobuf schemas
  • โ˜๏ธ Cloud & DevOps - Resource pooling + performance monitoring + error recovery + enterprise serialization
  • ๐Ÿš€ High-Performance Applications - Object pools + thread-safe operations + smart caching + Cap'n Proto speed
  • ๐Ÿ›ก๏ธ Security-Critical Systems - Advanced validation + secure hashing + encrypted storage + schema validation
  • ๐Ÿ’ผ Any Production System - Because enterprise-grade utilities shouldn't be optional

๐Ÿš€ Get Started in 30 Seconds

One Simple Install

pip install exonware-xwsystem

That's it! Everything included - no extras needed.

๐Ÿš€ Complete Feature Arsenal

๐ŸŽฏ 24 Serialization Formats (More Than Any Library)

Text Formats (8): JSON, YAML, TOML, XML, CSV, ConfigParser, FormData, Multipart
Binary Formats (9): BSON, MessagePack, CBOR, Pickle, Marshal, SQLite3, DBM, Shelve, Plistlib
๐Ÿ†• Schema-Based Enterprise Formats (7): Apache Avro, Protocol Buffers, Apache Thrift, Apache Parquet, Apache ORC, Cap'n Proto, FlatBuffers
โœ… Consistent API across all formats
โœ… Production libraries only (PyYAML, msgpack, cbor2, fastavro, protobuf, pyarrow, etc.)
โœ… Security validation built-in
โœ… 47% size reduction with binary formats
โœ… Schema evolution support with enterprise formats

๐Ÿค– AI-Powered Performance Engine

โœ… Adaptive Learning - Auto-optimizes based on usage patterns
โœ… Dual-Phase Optimization - Fast cruise + intelligent deep-dive
โœ… Performance Regression Detection - Catches slowdowns automatically
โœ… Smart Resource Management - Dynamic memory and CPU optimization
โœ… Real-time Performance Monitoring - Live metrics and recommendations

๐Ÿ›ก๏ธ Military-Grade Security Suite

โœ… Enterprise Cryptography - AES, RSA, BLAKE2b, HMAC, PBKDF2
โœ… Secure Storage - Encrypted key-value store with integrity protection
โœ… Path Security - Directory traversal prevention, symlink protection
โœ… Input Validation - Type safety, depth limits, sanitization
โœ… API Key Generation - Cryptographically secure tokens
โœ… Password Hashing - bcrypt with secure salts

๐Ÿง  Advanced Memory Management

โœ… Automatic Leak Detection - Real-time monitoring with path tracking
โœ… Smart Garbage Collection - Optimized cleanup triggers
โœ… Memory Pressure Alerts - Proactive resource management
โœ… Object Lifecycle Tracking - Monitor creation/destruction patterns
โœ… Auto-Cleanup - Prevents memory leaks automatically

๐Ÿ”„ Production Resilience Patterns

โœ… Circuit Breakers - Prevent cascade failures
โœ… Retry Logic - Exponential backoff with jitter
โœ… Graceful Degradation - Fallback strategies
โœ… Error Recovery - Automatic healing mechanisms
โœ… Timeout Management - Configurable timeouts everywhere

๐ŸŠ High-Performance Object Management

โœ… Object Pooling - Reuse expensive resources (DB connections, etc.)
โœ… Thread-Safe Singletons - Zero-overhead singleton pattern
โœ… Resource Factories - Thread-safe object creation
โœ… Context Managers - Automatic resource cleanup
โœ… Weak References - Prevent memory leaks in circular structures

๐Ÿงต Advanced Threading Utilities

โœ… Enhanced Locks - Timeout support, statistics, deadlock detection
โœ… Thread-Safe Factories - Concurrent handler registration
โœ… Method Generation - Dynamic thread-safe method creation
โœ… Safe Context Combining - Compose multiple context managers
โœ… Atomic Operations - Lock-free data structures where possible

๐ŸŒ Modern HTTP Client

โœ… Smart Retries - Configurable backoff strategies
โœ… Session Management - Automatic cookie/token handling
โœ… Middleware Support - Request/response interceptors
โœ… Async/Sync - Both paradigms supported
โœ… Connection Pooling - Efficient connection reuse

๐Ÿ“Š Production Monitoring & Observability

โœ… Performance Validation - Threshold monitoring with alerts
โœ… Metrics Collection - Comprehensive statistics gathering
โœ… Health Checks - System health monitoring
โœ… Trend Analysis - Performance pattern recognition
โœ… Custom Dashboards - Extensible monitoring framework

๐Ÿง  Intelligent Data Structures

โœ… Circular Reference Detection - Prevent infinite loops
โœ… Smart Tree Walking - Custom processors with cycle protection
โœ… Proxy Resolution - Handle complex object relationships
โœ… Deep Path Finding - Navigate nested structures safely
โœ… Type Safety Validation - Runtime type checking

๐Ÿ”Œ Dynamic Plugin System

โœ… Auto-Discovery - Find plugins via entry points
โœ… Hot Loading - Load/unload plugins at runtime
โœ… Plugin Registry - Centralized plugin management
โœ… Metadata Support - Rich plugin information
โœ… Dependency Resolution - Handle plugin dependencies

โš™๏ธ Enterprise Configuration Management

โœ… Performance Profiles - Optimized settings for different scenarios
โœ… Environment Detection - Auto-adapt to runtime environment
โœ… Configuration Validation - Ensure settings are correct
โœ… Hot Reloading - Update config without restart
โœ… Secure Defaults - Production-ready out of the box

๐Ÿ’พ Bulletproof I/O Operations

โœ… Atomic File Operations - All-or-nothing writes
โœ… Automatic Backups - Safety nets for critical files
โœ… Path Management - Safe directory operations
โœ… Cross-Platform - Windows/Linux/macOS compatibility
โœ… Permission Handling - Maintain file security

๐Ÿ” Runtime Intelligence

โœ… Environment Manager - Detect platform, resources, capabilities
โœ… Reflection Utils - Dynamic code introspection
โœ… Module Discovery - Find and load code dynamically
โœ… Resource Monitoring - CPU, memory, disk usage
โœ… Dependency Analysis - Understand code relationships

30-Second Demo

from exonware.xwsystem import JsonSerializer, YamlSerializer, SecureHash

# Serialize data
data = {"project": "awesome", "version": "1.0"}
json_str = JsonSerializer().dumps(data)
yaml_str = YamlSerializer().dumps(data)

# Hash passwords
password_hash = SecureHash.sha256("user_password")

# That's it! ๐ŸŽ‰

Usage

Core Utilities

from exonware.xwsystem import (
    ThreadSafeFactory, 
    PathValidator, 
    AtomicFileWriter, 
    CircularReferenceDetector
)

# Thread-safe factory
factory = ThreadSafeFactory()
factory.register("json", JsonHandler, ["json"])

# Secure path validation
validator = PathValidator(base_path="/safe/directory")
safe_path = validator.validate_path("config/settings.json")

# Atomic file writing
with AtomicFileWriter("important.json") as writer:
    writer.write(json.dumps(data))

Serialization (30 Formats) - The Crown Jewel

from exonware.xwsystem import (
    # Text formats (8 formats)
    JsonSerializer, YamlSerializer, TomlSerializer, XmlSerializer,
    CsvSerializer, ConfigParserSerializer, FormDataSerializer, MultipartSerializer,
    # Binary formats (9 formats)  
    BsonSerializer, MsgPackSerializer, CborSerializer,
    PickleSerializer, MarshalSerializer, Sqlite3Serializer,
    DbmSerializer, ShelveSerializer, PlistlibSerializer,
    # ๐Ÿ†• NEW: Schema-based enterprise formats (7 formats)
    AvroSerializer, ProtobufSerializer, ThriftSerializer,
    ParquetSerializer, OrcSerializer, CapnProtoSerializer, FlatBuffersSerializer,
    # ๐Ÿ†• NEW: Key-value stores (3 formats)
    LevelDbSerializer, LmdbSerializer, ZarrSerializer,
    # ๐Ÿ†• NEW: Scientific & analytics (3 formats)
    Hdf5Serializer, FeatherSerializer, GraphDbSerializer
)

# Text formats (human-readable)
js = JsonSerializer()              # Standard JSON - universal
ys = YamlSerializer()              # Human-readable config files
ts = TomlSerializer()              # Python package configs
xs = XmlSerializer()               # Structured documents (secure)
cs = CsvSerializer()               # Tabular data & Excel compatibility
cps = ConfigParserSerializer()     # INI-style configuration
fds = FormDataSerializer()         # URL-encoded web forms
mps = MultipartSerializer()        # HTTP file uploads

# Binary formats (high-performance)
bs = BsonSerializer()              # MongoDB compatibility  
mss = MsgPackSerializer()          # Compact binary (47% smaller than JSON)
cbrs = CborSerializer()            # RFC 8949 binary standard
ps = PickleSerializer()            # Python objects (any type)
ms = MarshalSerializer()           # Python internal (fastest)
s3s = Sqlite3Serializer()          # Embedded database
ds = DbmSerializer()               # Key-value database
ss = ShelveSerializer()            # Persistent dictionary
pls = PlistlibSerializer()         # Apple property lists

# ๐Ÿ†• NEW: Schema-based enterprise formats (7 formats)
avs = AvroSerializer()             # Apache Avro - schema evolution
pbs = ProtobufSerializer()         # Protocol Buffers - Google's format
trs = ThriftSerializer()           # Apache Thrift - cross-language RPC
pqs = ParquetSerializer()          # Apache Parquet - columnar analytics
ors = OrcSerializer()              # Apache ORC - optimized row columnar
cps = CapnProtoSerializer()        # Cap'n Proto - infinite speed (optional)
fbs = FlatBuffersSerializer()      # FlatBuffers - zero-copy access

# ๐Ÿ†• NEW: Key-value stores (3 formats)
ldbs = LevelDbSerializer()         # LevelDB/RocksDB - fast key-value store
lmdb = LmdbSerializer()            # LMDB - memory-mapped database
zarr = ZarrSerializer()            # Zarr - chunked compressed arrays

# ๐Ÿ†• NEW: Scientific & analytics (3 formats)
hdf5 = Hdf5Serializer()            # HDF5 - hierarchical tree, partial fast access
feather = FeatherSerializer()      # Feather/Arrow - columnar, zero-copy, fast I/O
graphdb = GraphDbSerializer()      # Neo4j/Dgraph - graph structure, optimized for relationships

# Same API, any format - that's the magic!
data = {"users": 1000, "active": True, "tags": ["fast", "reliable"]}
json_str = js.dumps(data)         # Text: 58 chars
msgpack_bytes = mss.dumps(data)   # Binary: 31 bytes (47% smaller!)
avro_bytes = avs.dumps(data)      # Schema-based with evolution support
parquet_data = pqs.dumps(data)    # Columnar format for analytics

๐Ÿ“š Documentation

๐Ÿ”ง Development

# Install in development mode
pip install -e ./xwsystem

# Run tests
pytest

# Format code
black src/ tests/
isort src/ tests/

๐Ÿ“ฆ Complete Feature Breakdown

๐Ÿš€ Core System Utilities

  • ๐Ÿงต Threading Utilities - Thread-safe factories, enhanced locks, safe method generation
  • ๐Ÿ›ก๏ธ Security Suite - Path validation, crypto operations, resource limits, input validation
  • ๐Ÿ“ I/O Operations - Atomic file writing, safe read/write operations, path management
  • ๐Ÿ”„ Data Structures - Circular reference detection, tree walking, proxy resolution
  • ๐Ÿ—๏ธ Design Patterns - Generic handler factories, context managers, object pools
  • ๐Ÿ“Š Performance Monitoring - Memory monitoring, performance validation, metrics collection
  • ๐Ÿ”ง Error Recovery - Circuit breakers, retry mechanisms, graceful degradation
  • ๐ŸŒ HTTP Client - Modern async HTTP with smart retries and configuration
  • โš™๏ธ Runtime Utilities - Environment detection, reflection, dynamic loading
  • ๐Ÿ”Œ Plugin System - Dynamic plugin discovery, registration, and management

โšก Serialization Formats (24 Total)

๐Ÿ“ Text Formats (8 formats - Human-Readable)

  • JSON - Universal standard, built-in Python, production-ready
  • YAML - Human-readable configs, complex data structures
  • TOML - Python package configs, strict typing
  • XML - Structured documents with security features
  • CSV - Tabular data, Excel compatibility, data analysis
  • ConfigParser - INI-style configuration files
  • FormData - URL-encoded form data for web APIs
  • Multipart - HTTP multipart/form-data for file uploads

๐Ÿ’พ Binary Formats (9 formats - High-Performance)

  • BSON - Binary JSON with MongoDB compatibility
  • MessagePack - Efficient binary (47% smaller than JSON)
  • CBOR - RFC 8949 concise binary object representation
  • Pickle - Python native object serialization (any type)
  • Marshal - Python internal serialization (fastest)
  • SQLite3 - Embedded SQL database serialization
  • DBM - Key-value database storage
  • Shelve - Persistent dictionary storage
  • Plistlib - Apple property list format

๐Ÿ†• ๐Ÿข Schema-Based Enterprise Formats (7 formats - Production-Grade)

  • Apache Avro - Schema evolution, cross-language compatibility (fastavro)
  • Protocol Buffers - Google's language-neutral serialization (protobuf)
  • Apache Thrift - Cross-language RPC framework (thrift)
  • Apache Parquet - Columnar storage for analytics (pyarrow)
  • Apache ORC - Optimized row columnar format (pyorc)
  • Cap'n Proto - Infinitely fast data interchange (pycapnp - optional)
  • FlatBuffers - Zero-copy serialization for games/performance (flatbuffers)

๐Ÿ”’ Security & Cryptography

  • Symmetric/Asymmetric Encryption - Industry-standard algorithms
  • Secure Hashing - SHA-256, password hashing, API key generation
  • Path Security - Directory traversal prevention, safe path validation
  • Resource Limits - Memory, file size, processing limits
  • Input Validation - Type safety, data validation, sanitization

๐ŸŽฏ Why This Matters

โœ… 24 serialization formats - More than any other Python library (including 7 enterprise schema formats)
โœ… Production-grade libraries - No custom parsers, battle-tested code (fastavro, protobuf, pyarrow, etc.)
โœ… Consistent API - Same methods work across all formats
โœ… Security-first - Built-in validation and protection
โœ… Performance-optimized - Smart caching, efficient operations
โœ… Schema evolution support - Enterprise-grade data compatibility
โœ… Zero-config - Works out of the box with sensible defaults

๐Ÿ“ˆ Join Developers Who Simplified Their Stack

"Replaced 47 dependencies with XWSystem. The adaptive performance engine automatically optimizes our ML pipelines."
โ€” Senior ML Engineer

"The memory leak detection saved our production servers. It automatically prevents and cleans up leaks - incredible!"
โ€” DevOps Engineer

"Military-grade crypto + circuit breakers + object pools in one library? This is enterprise Python done right."
โ€” Tech Lead

"The AI-powered performance optimization learns from our usage patterns. It's like having a performance engineer built into the code."
โ€” Principal Architect

"24 serialization formats including enterprise schema formats, advanced security, performance monitoring - XWSystem is what every Python project needs."
โ€” CTO, Fortune 500

๐Ÿš€ Ready to Simplify Your Python Stack?

Choose Your Installation:

# Option 1: Enterprise package
pip install exonware-xwsystem

# Option 2: Simple package  
pip install xwsystem

Both packages are identical - same functionality, same imports, same everything!

Links

What's Next?

  1. Install XWSystem - Get started in 30 seconds
  2. Replace your imports - One import instead of 20+
  3. Enjoy cleaner code - Consistent APIs, better security
  4. Ship faster - Focus on business logic, not utilities

๐Ÿ† XWSystem: Because life's too short for dependency hell.


Built with โค๏ธ by eXonware.com

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

exonware_xwsystem-0.0.1.359.tar.gz (490.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

exonware_xwsystem-0.0.1.359-py3-none-any.whl (474.0 kB view details)

Uploaded Python 3

File details

Details for the file exonware_xwsystem-0.0.1.359.tar.gz.

File metadata

  • Download URL: exonware_xwsystem-0.0.1.359.tar.gz
  • Upload date:
  • Size: 490.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.8.18

File hashes

Hashes for exonware_xwsystem-0.0.1.359.tar.gz
Algorithm Hash digest
SHA256 cf7cb55c61e34e0b52f8212a9e4d28ac484b80e805313633db6e0607099649d8
MD5 1934adb07a7c1dbc24e22d9993bec7da
BLAKE2b-256 b1f8bc2f998a34936685319ecb1c49724bcc11cef509601bace0573dee3b38b0

See more details on using hashes here.

File details

Details for the file exonware_xwsystem-0.0.1.359-py3-none-any.whl.

File metadata

File hashes

Hashes for exonware_xwsystem-0.0.1.359-py3-none-any.whl
Algorithm Hash digest
SHA256 a98285345e1142ea8e416efd00714c9fe8eeffb626632bb6b441630d13e4993c
MD5 00ae37ebac065e3ae8f32ebfc5613108
BLAKE2b-256 c661a31b1056c0f4cc55206040f6722b45f4e6aea9b8dd541be7bba2316ddf5b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page