Spaces:
Runtime error
Runtime error
castorfou
commited on
Commit
·
63269df
1
Parent(s):
220d4a1
2022-10-07_14:01
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
# AUTOGENERATED! DO NOT EDIT! File to edit: main.ipynb.
|
2 |
|
3 |
# %% auto 0
|
4 |
-
__all__ = []
|
5 |
|
6 |
-
# %% main.ipynb
|
7 |
import gradio as gr
|
8 |
import pandas as pd
|
9 |
import tempfile
|
@@ -14,7 +14,6 @@ from rbc import add_classements
|
|
14 |
def analyse_fichier(file):
|
15 |
fichier = file[0]
|
16 |
fichier_save = Path(fichier.name).stem
|
17 |
-
https://huggingface.co/spaces/Guillaume63/rbc
|
18 |
df_adherents = pd.read_excel(fichier)
|
19 |
df_classements = add_classements(df_adherents)
|
20 |
|
|
|
1 |
# AUTOGENERATED! DO NOT EDIT! File to edit: main.ipynb.
|
2 |
|
3 |
# %% auto 0
|
4 |
+
__all__ = ['analyse_fichier']
|
5 |
|
6 |
+
# %% main.ipynb 1
|
7 |
import gradio as gr
|
8 |
import pandas as pd
|
9 |
import tempfile
|
|
|
14 |
def analyse_fichier(file):
|
15 |
fichier = file[0]
|
16 |
fichier_save = Path(fichier.name).stem
|
|
|
17 |
df_adherents = pd.read_excel(fichier)
|
18 |
df_classements = add_classements(df_adherents)
|
19 |
|