marianbasti commited on
Commit
6472b6d
1 Parent(s): e8da824

Update README.md

Browse files

Ups, era en español

Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -28,12 +28,13 @@ El formato del dataset es el siguiente:
28
  }
29
  ```
30
 
31
- If you want to dynamically query filtered data, without downloading the wholde dataset, you can do so like this:
 
32
  ```python
33
- # In this example, we filter entries by date
34
  import requests
35
 
36
- API_TOKEN = "your_api_token_here"
37
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
38
  date='2024-03-01'
39
  API_URL = f"https://datasets-server.huggingface.co/filter?dataset=marianbasti/boletin-oficial-argentina&config=default&split=train&where=date='{date}T00:00:00'"
 
28
  }
29
  ```
30
 
31
+ # Uso
32
+ Podés usar este dataset sin descargarlo por completo, trayendo data filtrada con un solo query. Podes hacerlo así:
33
  ```python
34
+ # En este ejemplo, filtramos entradas por fecha
35
  import requests
36
 
37
+ API_TOKEN = "tu_api_token"
38
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
39
  date='2024-03-01'
40
  API_URL = f"https://datasets-server.huggingface.co/filter?dataset=marianbasti/boletin-oficial-argentina&config=default&split=train&where=date='{date}T00:00:00'"