Compare commits
No commits in common. "91aab39b5f15499c9649ab40bdeb8a6589626e1b" and "c954fff012c70d00e8747e6d595817d8ae86d99b" have entirely different histories.
91aab39b5f
...
c954fff012
16
bot.py
16
bot.py
|
@ -65,29 +65,17 @@ db = client['bot']
|
|||
# Function to get data
|
||||
def download():
|
||||
|
||||
# Download from open data
|
||||
r = requests.get(DATA_URL)
|
||||
# Create dataframe from data
|
||||
df = pd.read_csv(
|
||||
io.StringIO(r.text),
|
||||
index_col="data_somministrazione",
|
||||
)
|
||||
# Set date as index
|
||||
df.index = pd.to_datetime(
|
||||
df.index,
|
||||
format="%Y-%m-%d",
|
||||
)
|
||||
# Sort value based on date
|
||||
df.sort_values('data_somministrazione')
|
||||
# Delete sum data if already exists
|
||||
df = df[df["area"] != "ITA"]
|
||||
# Set target counter to numeric
|
||||
df = df.loc[df["area"] == "ITA"]
|
||||
df["totale"] = pd.to_numeric(df["totale"])
|
||||
# Group by day and sum counters
|
||||
df = df.groupby(['data_somministrazione'])['totale'].sum().reset_index()
|
||||
# Re-set date as ID in new dataframe
|
||||
df = df.set_index('data_somministrazione')
|
||||
# If there are current day data...
|
||||
if dt.now() - df.index[-1] < td(days=1):
|
||||
df = df[:-1] # Ignore the current day because it's often incomplete
|
||||
|
||||
|
@ -160,7 +148,7 @@ def help(update, context):
|
|||
help_msg = "_Lista dei comandi_ \n\n"
|
||||
help_msg += "/start - Avvia il bot \n"
|
||||
help_msg += "/get - Ricevi i dati aggiornati \n"
|
||||
help_msg += "/news ON/OFF - Attiva o Disattiva le notifiche giornaliere \n"
|
||||
help_msg += "/news `ON`/`OFF` - Attiva o Disattiva le notifiche giornaliere \n"
|
||||
help_msg += "/help - Messaggio di aiuto \n"
|
||||
help_msg += "/info - Informazioni su questo bot \n"
|
||||
help_msg += "/stop - Disattiva il bot \n"
|
||||
|
|
Loading…
Reference in New Issue