Skip to content

SDK de Python - Dailybot Desarrolladores

SDK oficial de Dailybot para Python. Librería cliente para la API de Dailybot con type hints y soporte async.

SDK de Python

El SDK oficial de Dailybot para Python proporciona una librería cliente para interactuar con la API de Dailybot. Incluye type hints y cubre check-ins, reportes, kudos, workflows y webhooks.

Instalación

Instalar via pip
pip install dailybot

Inicio Rápido

Uso básico
import os
from dailybot import Dailybot

client = Dailybot(api_key=os.environ["DAILYBOT_API_KEY"])

# List all check-ins
check_ins = client.check_ins.list()

# Get a specific report
report = client.reports.get(
    check_in_id="ci_abc123",
    date="2026-02-14"
)

# Send a kudos
client.kudos.send(
    from_user="u_1",
    to_user="u_2",
    message="Great work on the launch!"
)

Funcionalidades

FuncionalidadSoportada
Check-ins
Reportes
Kudos
Workflows
Webhooks
Type hints

SDK de Node.js

¿Buscas Node.js? Ve la documentación del SDK de Node.js.