This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"Sexo": "Hombre", | |
"Region": "Tarapacá", | |
"Tiempo": 3.9689 | |
}, | |
{ | |
"Sexo": "Hombre", | |
"Region": "Antofagasta", | |
"Tiempo": 3.7302 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pathlib import Path | |
from random import choice | |
from string import ascii_letters, digits | |
from typing import Dict | |
import click | |
import requests | |
import yaml | |
from boto3 import Session |
OlderNewer