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
import os | |
import sys | |
import pickle | |
from threading import Thread, Event | |
from time import time, sleep | |
from datetime import timedelta | |
from telegram import Update | |
from telegram.ext import Updater, Filters, CommandHandler, MessageHandler, Job |
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
#!/usr/bin/env python3 | |
# -*- coding: UTF-8 -*- | |
# Copyright (C) 2023 Schmidt Cristian Hernán | |
# Este script descarga el histórico de los valores del precio del dólar en la | |
# República Argentina y los gráfica, agregando además los cambios de presidentes | |
# que hubieron en el rango de los valores disponibles. | |
# | |
# Se almacenan además los datos en un archivo csv y se guarda la imagen en formato | |
# png y svg. Los tres archivos en la misma carpeta donde donde esté este archivo, |
OlderNewer