Update main.py
Browse files
main.py
CHANGED
@@ -518,6 +518,11 @@ async def datavisualisation_chiffres_cles_emplois(url):
|
|
518 |
response = requests.get(url)
|
519 |
soup = BeautifulSoup(response.text, "lxml")
|
520 |
|
|
|
|
|
|
|
|
|
|
|
521 |
allembauches = soup.select('p.population_category')
|
522 |
allnumembauchesfirst = soup.select('p.population_main-num.data')
|
523 |
allnumembauches = removeTags(allnumembauchesfirst[0]).split('\xa0')
|
|
|
518 |
response = requests.get(url)
|
519 |
soup = BeautifulSoup(response.text, "lxml")
|
520 |
|
521 |
+
alldemandeurs = ''
|
522 |
+
allsalaires = ''
|
523 |
+
alldifficultes = ''
|
524 |
+
allrepartitions = ''
|
525 |
+
allentreprises = ''
|
526 |
allembauches = soup.select('p.population_category')
|
527 |
allnumembauchesfirst = soup.select('p.population_main-num.data')
|
528 |
allnumembauches = removeTags(allnumembauchesfirst[0]).split('\xa0')
|