datacipen commited on
Commit
6cc4c29
·
verified ·
1 Parent(s): 734248b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -2,7 +2,7 @@ import os
2
  import datetime
3
  import requests
4
  import textwrap
5
- import js2py
6
  from offres_emploi import Api
7
  from offres_emploi.utils import dt_to_str_iso
8
  from dash import Dash, html, dcc, callback, Output, Input, dash_table, State, _dash_renderer, clientside_callback
@@ -855,8 +855,9 @@ def create_repartition(array_value, selectedData, theme):
855
  plot_bgcolor = 'rgba(255, 255, 255, 1)'
856
 
857
  df_FT = API_France_Travail(array_value)
858
- eval_res, tempfile = js2py.run_file("./public/contexte.js")
859
- tempfile.contextia(df_FT.to_string(index = False))
 
860
 
861
  ######## localisation ########
862
  df = df_FT[['intitule','typeContratLibelle','experienceLibelle','lieuTravail','secteurActiviteLibelle']].copy()
 
2
  import datetime
3
  import requests
4
  import textwrap
5
+ import pythonmonkey as pm
6
  from offres_emploi import Api
7
  from offres_emploi.utils import dt_to_str_iso
8
  from dash import Dash, html, dcc, callback, Output, Input, dash_table, State, _dash_renderer, clientside_callback
 
855
  plot_bgcolor = 'rgba(255, 255, 255, 1)'
856
 
857
  df_FT = API_France_Travail(array_value)
858
+
859
+ test = pm.require('./public/contexte');
860
+ test.contextia(df_FT.to_string(index = False))
861
 
862
  ######## localisation ########
863
  df = df_FT[['intitule','typeContratLibelle','experienceLibelle','lieuTravail','secteurActiviteLibelle']].copy()