Python + html
Fermé
mnic096
-
2 août 2017 à 10:15
mamiemando Messages postés 33381 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 26 novembre 2024 - 4 août 2017 à 09:36
mamiemando Messages postés 33381 Date d'inscription jeudi 12 mai 2005 Statut Modérateur Dernière intervention 26 novembre 2024 - 4 août 2017 à 09:36
A voir également:
- Python + html
- Editeur html - Télécharger - HTML
- Citizen code python avis - Accueil - Outils
- &Nbsp html ✓ - Forum Webmastering
- Br html ✓ - Forum Webmastering
1 réponse
mamiemando
Messages postés
33381
Date d'inscription
jeudi 12 mai 2005
Statut
Modérateur
Dernière intervention
26 novembre 2024
7 802
4 août 2017 à 09:36
4 août 2017 à 09:36
Bonjour
Tu peux utiliser
Il suffit ensuite d'extraire de
Bonne chance
Tu peux utiliser
urllib3pour récupérer le contenu d'une page web (ici la recherche du mot "tapir" avec google).
#!/usr/bin/env python3 # -*- coding: utf-8 -*- try: import urllib3 except ImportError: raise ImportError("python3-urllib3 is not installed: please run: apt-get install python3-urllib3") query = "https://www.google.fr/search?q=tapir" http = urllib3.PoolManager(timeout=urllib3.Timeout(connect=1.0, read=2.0)) reply = http.request("GET", query) if reply.status == 200: s = reply.data.decode("latin-1") print(s) else: raise RuntimeError("Cannot get reply")
Il suffit ensuite d'extraire de
sles morceaux qui t'intéressent, par exemple à l'aide d'expression régulières.
Bonne chance