> ## 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 (Em Breve)

## Em Breve

O SDK oficial Python para KillB está atualmente em desenvolvimento e estará disponível em breve.

<Info>
  Quer acesso antecipado? Entre em contato conosco em [developers@killb.com](mailto:developers@killb.com)
</Info>

## Recursos Planejados

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

  <Card title="Async/Await" icon="bolt">
    Suporte AsyncIO para operações concorrentes
  </Card>

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

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

## API Esperada

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

# Inicializar
killb = KillB(
    email="seu-email@example.com",
    password="sua-senha",
    environment="sandbox"
)

# Criar usuário
user = killb.users.create({
    "type": "PERSON",
    "data": {
        "firstName": "João",
        "lastName": "Silva",
        # ...
    }
})

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

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

## Use REST API Agora

Enquanto o SDK está em desenvolvimento, use nossa REST API com Python:

<Card title="Guia REST API" icon="code" href="/api-reference/introduction">
  Ver documentação da REST API
</Card>

## Seja Notificado

Cadastre-se para ser notificado quando o SDK Python for lançado:

<Card title="Entrar na Lista de Espera" icon="bell" href="https://www.killb.com/sdk-waitlist">
  Obtenha acesso antecipado ao SDK Python
</Card>
