Update main.py
Browse files
main.py
CHANGED
@@ -31,6 +31,7 @@ from offres_emploi.utils import dt_to_str_iso
|
|
31 |
import datetime
|
32 |
import plotly.express as px
|
33 |
import bcrypt
|
|
|
34 |
import json
|
35 |
import requests
|
36 |
import http.client
|
@@ -278,7 +279,7 @@ def rename(orig_author: str):
|
|
278 |
|
279 |
@cl.action_callback("datavizChiffresClesMetiers")
|
280 |
async def on_action(action):
|
281 |
-
romeListArray =
|
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])
|
|
|
31 |
import datetime
|
32 |
import plotly.express as px
|
33 |
import bcrypt
|
34 |
+
import ast
|
35 |
import json
|
36 |
import requests
|
37 |
import http.client
|
|
|
279 |
|
280 |
@cl.action_callback("datavizChiffresClesMetiers")
|
281 |
async def on_action(action):
|
282 |
+
romeListArray = ast.literal_eval(action.value)
|
283 |
for j in range(0, len(romeListArray)):
|
284 |
table = await datavisualisation_chiffres_cles_emplois("https://dataemploi.pole-emploi.fr/metier/chiffres-cles/NAT/FR/" + romeListArray[j])
|
285 |
plot_demandeur = plotDemandeur(htmlToDataframe(table[0]), romeListArray[j])
|