Skip to main content

Inter-Process Communication (IPC) library for Python with type safety

Project description

ipcx-typed

PyPI - Python Version CodeQL Tests PyPI version License

A powerful, type-safe inter-process communication library for Python with type safety

🌟 Features

  • ✨ Simple and intuitive API for IPC communication
  • 🔒 Type-safe request/response handling with Pydantic models
  • 🪶 Lightweight and efficient
  • 📦 Efficient data serialization
  • 🔌 Easy integration with any Python application

📦 Installation

Choose your preferred installation method:

# Using pip (recommended)
pip install ipcx-typed

# Using poetry
poetry add ipcx-typed

# Using pipenv
pipenv install ipcx-typed

Requirements

  • Python 3.9 or higher
  • aiohttp >= 3.11.16
  • pydantic >= 2.11.3

🚀 Quick Start

Here's a minimal example to get you started:

from pydantic import BaseModel
from ipcx import Server, Client

# Define your data model
class Message(BaseModel):
    content: str

# Server
async def run_server():
    server = Server(host="localhost", port=8080)
    
    @server.route(param_model=Message, return_model=Message)
    async def echo(request: Message) -> Message:
        return Message(content=f"Echo: {request.content}")
    
    await server.start()

# Client
async def run_client():
    client = Client(host="localhost", port=8080)
    response = await client.request(
        "echo",
        Message(content="Hello, World!"),
        Message
    )
    print(response.content)  # Output: Echo: Hello, World!

Basic Usage

Here's a simple calculator example demonstrating the usage of ipcx:

from pydantic import BaseModel
from ipcx import Server, Client
from typing import List

# Define your data models
class AddRequest(BaseModel):
    numbers: List[float]

class AddResponse(BaseModel):
    sum: float

# Server
async def run_server():
    server = Server(host="localhost", port=8080)
    
    @server.route(param_model=AddRequest, return_model=AddResponse)
    async def add(request: AddRequest) -> AddResponse:
        result = sum(request.numbers)
        return AddResponse(sum=result)
    
    await server.start()

# Client
async def run_client():
    client = Client(host="localhost", port=8080)
    
    # Make a request
    numbers = [1.5, 2.5, 3.5, 4.5]
    response = await client.request(
        "add",
        AddRequest(numbers=numbers),
        AddResponse
    )
    print(f"Sum: {response.sum}")  # Output: Sum: 12.0

Advanced Usage

Type-Safe Routes with Pydantic

from pydantic import BaseModel

class StatsRequest(BaseModel):
    numbers: List[float]

class StatsResponse(BaseModel):
    min: float
    max: float
    average: float

@server.route(param_model=StatsRequest, return_model=StatsResponse)
async def stats(request: StatsRequest) -> StatsResponse:
    if not request.numbers:
        raise ValueError("Empty list provided")
    
    return StatsResponse(
        min=min(request.numbers),
        max=max(request.numbers),
        average=sum(request.numbers) / len(request.numbers)
    )

Error Handling

try:
    response = await client.request("stats", StatsRequest(numbers=[]), StatsResponse)
except Exception as e:
    print(f"Error: {e}")

Example Use Cases

  1. Microservices Architecture

    • Communication between different service components
    • Load balancing and service discovery
  2. Distributed Computing

    • Task distribution and result collection
    • Worker pool management
  3. Application Integration

    • Connecting different parts of your application
    • Plugin systems and extensions
  4. Real-time Data Processing

    • Stream processing
    • Event-driven architectures

🤝 Contributing

We welcome contributions! Here's how you can help:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Please read our Contributing Guidelines for more details.

📄 License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

💬 Support

Need help? Here are some ways to get support:

🔗 Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ipcx_typed-0.1.1.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

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

ipcx_typed-0.1.1-py3-none-any.whl (9.3 kB view details)

Uploaded Python 3

File details

Details for the file ipcx_typed-0.1.1.tar.gz.

File metadata

  • Download URL: ipcx_typed-0.1.1.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.12.3 Windows/11

File hashes

Hashes for ipcx_typed-0.1.1.tar.gz
Algorithm Hash digest
SHA256 31c7924725b824ef76e79b120470d5e011f186c22f5a85902ba9c07050929b58
MD5 46c1fa309be631a52adaa264b63bc544
BLAKE2b-256 010adfae98293e83e084083f55805b48435c0738c804b5d748879e4643b1d305

See more details on using hashes here.

File details

Details for the file ipcx_typed-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: ipcx_typed-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 9.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.2 CPython/3.12.3 Windows/11

File hashes

Hashes for ipcx_typed-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 589881bac82bfd655727d28e5170a56af35c0863e133b758f02e29645116aee2
MD5 3967ec5766634e13a03fabfb59b66019
BLAKE2b-256 599d65e316c47d485514edcda73cbf19c658fc02765aca8cf2b6ed67919d08d6

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