> ## Documentation Index
> Fetch the complete documentation index at: https://docs.killb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SDK Python

> SDK oficial Python para KillB (Próximamente)

## Próximamente

El SDK oficial Python para KillB está actualmente en desarrollo y estará disponible pronto.

<Info>
  ¿Quieres acceso anticipado? Contáctanos en [developers@killb.com](mailto:developers@killb.com)
</Info>

## Características Planificadas

<CardGroup cols={2}>
  <Card title="Type Hints" icon="shield-check">
    Soporte completo de type hints para Python moderno
  </Card>

  <Card title="Async/Await" icon="bolt">
    Soporte AsyncIO para operaciones concurrentes
  </Card>

  <Card title="Modelos Pydantic" icon="file-code">
    Modelos de datos validados usando Pydantic
  </Card>

  <Card title="Auto Retry" icon="rotate">
    Reintento automático con backoff exponencial
  </Card>
</CardGroup>

## API Esperada

```python theme={null}
from killb import KillB

# Inicializar
killb = KillB(
    email="tu-email@example.com",
    password="tu-contraseña",
    environment="sandbox"
)

# Crear usuario
user = killb.users.create({
    "type": "PERSON",
    "data": {
        "firstName": "Juan",
        "lastName": "García",
        # ...
    }
})

# Crear ramp
ramp = killb.ramps.create({
    "quotationId": quote.id,
    "userId": user.id,
    "accountId": wallet.id
})

print(f"Ramp creado: {ramp.id}")
```

## Usa REST API Ahora

Mientras el SDK está en desarrollo, usa nuestra REST API con Python:

<Card title="Guía REST API" icon="code" href="/api-reference/introduction">
  Ver documentación de REST API
</Card>

## Ser Notificado

Regístrate para ser notificado cuando se lance el SDK Python:

<Card title="Unirse a Lista de Espera" icon="bell" href="https://www.killb.com/sdk-waitlist">
  Obtén acceso anticipado al SDK Python
</Card>
