You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print("Issue with '{0}' and '{1}'".format(url, link))
1198
1202
print("It might be due to slow javascript which produces the HTML page.")
1199
1203
results.append(url)
1200
-
1201
-
len(results)
1202
1204
```
1203
1205
1206
+
Enfin, pour mettre fin à notre session, on demande
1207
+
à `Python` de quitter le navigateur
1208
+
1204
1209
```{python}
1205
-
#| eval: false
1206
-
# on a une pause de 10 secondes pour aller voir ce qui se passe sur la page internet
1207
-
# on demande de quitter le navigateur quand tout est fini
1208
1210
browser.quit()
1209
1211
```
1210
1212
1213
+
On a obtenu les résultats suivants:
1214
+
1215
+
1211
1216
```{python}
1212
-
#| eval: false
1213
1217
print(results)
1214
1218
```
1215
1219
@@ -1265,7 +1269,7 @@ browser.quit()
1265
1269
1266
1270
Pour cet exercice, on propose de scraper la liste des ministres français depuis le [site du gouvernement](https://www.gouvernement.fr/composition-du-gouvernement). L'objectif sera, _in fine_ de faire un graphique qui représente la distribution de leurs âges.
1267
1271
La solution pour cet exercice a été proposée
1268
-
par [@tttienthinh](https://github.com/tttienthinh)
1272
+
par [Tien-Thinh](https://github.com/tttienthinh)
1269
1273
et [Antoine Palazzolo](https://github.com/antoine-palazz).
0 commit comments