From 1d8ae0a905a3cf77e4ec79209904df9622670062 Mon Sep 17 00:00:00 2001 From: blackriper Date: Tue, 2 May 2023 00:10:10 -0600 Subject: [PATCH] Reto #18 python --- .../python/blackriper.py" | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 "Retos/Reto #18 - WEB SCRAPING [Dif\303\255cil]/python/blackriper.py" diff --git "a/Retos/Reto #18 - WEB SCRAPING [Dif\303\255cil]/python/blackriper.py" "b/Retos/Reto #18 - WEB SCRAPING [Dif\303\255cil]/python/blackriper.py" new file mode 100644 index 0000000000..38e71de1c4 --- /dev/null +++ "b/Retos/Reto #18 - WEB SCRAPING [Dif\303\255cil]/python/blackriper.py" @@ -0,0 +1,26 @@ +from requests_html import HTMLSession +""" +instalar libreria pip install requests_html + +""" + + + +def main(): + # iniciar objeto de sesion y obtener la pagina + session=HTMLSession() + page=session.get("https://holamundo.day") + + """ + al inspecionar la pagina puedes ver que cada evento de la + charla usa una etiqueta blockquote solo hay que ver cuantos elementos son + y traer el rango en este caso [19:34] + postd: los conte de manera manual para saber el rango debe de haber una mejor manera + de hacerlo + """ + + for event in page.html.find("blockquote")[19:34]: + print(event.text) + +if __name__=='__main__': + main() \ No newline at end of file