Update main.py
Browse files
main.py
CHANGED
@@ -278,7 +278,7 @@ def rename(orig_author: str):
|
|
278 |
|
279 |
@cl.action_callback("datavizChiffresClesMetiers")
|
280 |
async def on_action(action):
|
281 |
-
romeListArray = action.value
|
282 |
for j in range(0, len(romeListArray)):
|
283 |
table = await datavisualisation_chiffres_cles_emplois("https://dataemploi.pole-emploi.fr/metier/chiffres-cles/NAT/FR/" + romeListArray[j])
|
284 |
plot_demandeur = plotDemandeur(htmlToDataframe(table[0]), romeListArray[j])
|
@@ -434,7 +434,7 @@ async def construction_NCS(competenceList):
|
|
434 |
await cl.Message(author="Datapcc : 🌐🌐🌐",content="📈 Source France Travail : " + listClesMetier_name, elements=text_ClesMetier).send()
|
435 |
await cl.sleep(1)
|
436 |
datavizChiffresClesMetiers = [
|
437 |
-
cl.Action(name="datavizChiffresClesMetiers", value=romeListArray, description="Afficher la datavisualisation des chiffres clés des métiers")
|
438 |
]
|
439 |
await cl.Message(author="Datapcc : 🌐🌐🌐",content="📊 Afficher la datavisualisation des chiffres clés des métiers", actions=datavizChiffresClesMetiers).send()
|
440 |
await cl.sleep(1)
|
|
|
278 |
|
279 |
@cl.action_callback("datavizChiffresClesMetiers")
|
280 |
async def on_action(action):
|
281 |
+
romeListArray = json.loads(action.value)
|
282 |
for j in range(0, len(romeListArray)):
|
283 |
table = await datavisualisation_chiffres_cles_emplois("https://dataemploi.pole-emploi.fr/metier/chiffres-cles/NAT/FR/" + romeListArray[j])
|
284 |
plot_demandeur = plotDemandeur(htmlToDataframe(table[0]), romeListArray[j])
|
|
|
434 |
await cl.Message(author="Datapcc : 🌐🌐🌐",content="📈 Source France Travail : " + listClesMetier_name, elements=text_ClesMetier).send()
|
435 |
await cl.sleep(1)
|
436 |
datavizChiffresClesMetiers = [
|
437 |
+
cl.Action(name="datavizChiffresClesMetiers", value=str(romeListArray), description="Afficher la datavisualisation des chiffres clés des métiers")
|
438 |
]
|
439 |
await cl.Message(author="Datapcc : 🌐🌐🌐",content="📊 Afficher la datavisualisation des chiffres clés des métiers", actions=datavizChiffresClesMetiers).send()
|
440 |
await cl.sleep(1)
|