# SDK

Este SDK cuenta con librerías desarrolladas en dos de los principales lenguajes de programación utilizados en el análisis de datos: ***Python*** y ***R***.&#x20;

## Instalación

Para usar ***APIMakeSens*** primero necesitas instalarlo.

> **APIMakeSense** es compatible con Python para la versión 3.8 o superior.

{% tabs %}
{% tab title="Python" %}
Instale la última versión usando *pip*

```python
pip install APIMakeSens
```

Si requieres instalar una versión específica  proporcione restricciones al instalar

```python
# Instalar APIMakeSens versión 1.4.7 espeficicamente
pip install APIMakeSens==1.4.7
```

{% endtab %}

{% tab title="R" %}
Instale la última versión desde [GitHub](https://github.com/MakeSens-Data/MakeSensAPI_R).

```r
# Instalación vía GitHub
install.packages('devtools')
library('devtools')
install_github("MakeSens-Data/MakeSensAPI_R", force = TRUE)
```

{% endtab %}
{% endtabs %}

## Usando APIMakeSens

Para utilizar *APIMakeSens*, lo primero es importarlo.

{% tabs %}
{% tab title="Python" %}

```python
from MakeSens import MakeSens
```

{% endtab %}

{% tab title="R" %}

```r
require("MakeSensAPI")
```

{% endtab %}
{% endtabs %}

{% content-ref url="/pages/lBTxFpKAYcP3NiV9W4h2" %}
[Broken mention](broken://pages/lBTxFpKAYcP3NiV9W4h2)
{% endcontent-ref %}

{% content-ref url="/pages/4Nksg0LhnPJDKb7pttuw" %}
[Broken mention](broken://pages/4Nksg0LhnPJDKb7pttuw)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.makesens.co/cloud/api-sdk/sdk.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
