
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
A Python framework for building high-quality, type-safe API SDKs with comprehensive error handling and retry logic
A modern Python framework for building high-quality, type-safe API SDKs with comprehensive error handling and retry logic.
Elusion Kit is a framework that provides the infrastructure needed to build professional API SDKs. It handles the common patterns like HTTP clients, authentication, retry logic, error handling, and data validation, so you can focus on implementing your specific API's business logic.
from elusion._core import BaseServiceClient, HTTPClient
from elusion._core.authentication import APIKeyAuthenticator
from elusion._core.configuration import ClientConfiguration, ServiceSettings
class MySDKClient(BaseServiceClient):
def __init__(self, api_key: str):
config = ClientConfiguration(timeout=30.0, max_retries=3)
settings = ServiceSettings(base_url="https://api.example.com")
authenticator = APIKeyAuthenticator(api_key)
super().__init__(
config=config,
service_settings=settings,
authenticator=authenticator
)
def _get_service_name(self) -> str:
return "MyAPI"
def _get_base_url(self) -> str:
return "https://api.example.com"
# Usage
client = MySDKClient("your-api-key")
pip install elusion-kit
We welcome contributions! Please see our Contributing Guide for details.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A Python framework for building high-quality, type-safe API SDKs with comprehensive error handling and retry logic
We found that elusion-kit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.