Merge branch 'main' of https://huggingface.co/spaces/davidanthony-ai/digitalixsa_transcription into main
Browse files
components/fonctions_transcription.py
CHANGED
@@ -123,7 +123,8 @@ def graphique_utilisation(data, username, annee_mois):
|
|
123 |
df_user['Year_Month'] = df_user['Year'].astype(str) + '_' + df_user['Month'].astype(str).str.zfill(2)
|
124 |
|
125 |
# Selection utilisateur et mois d'utilisation
|
126 |
-
|
|
|
127 |
a =df_user[(df_user["usernames"] == username) & (df_user["Year_Month"] == annee_mois)]
|
128 |
a["Consommation_heures"] = a["durees_audio_sec"].cumsum()
|
129 |
a["Consommation_heures"] = a["Consommation_heures"].values / 3600
|
|
|
123 |
df_user['Year_Month'] = df_user['Year'].astype(str) + '_' + df_user['Month'].astype(str).str.zfill(2)
|
124 |
|
125 |
# Selection utilisateur et mois d'utilisation
|
126 |
+
print(username)
|
127 |
+
print(annee_mois)
|
128 |
a =df_user[(df_user["usernames"] == username) & (df_user["Year_Month"] == annee_mois)]
|
129 |
a["Consommation_heures"] = a["durees_audio_sec"].cumsum()
|
130 |
a["Consommation_heures"] = a["Consommation_heures"].values / 3600
|