Hola lector de mi blog. Y sigo con más sitios. En esta oportunidad te presento el sitio web upguard, aquí tendrás acceso a información sobre ciber seguridad, escrita por expertos para usuarios con poca o nula experiencia sobre la seguridad informática. Podrás aprender sobre las vulnerabilidades más recientes, las vulnerabilidades más alarmantes y cuáles son las medidas más avanzadas que puedes aplicar a tu equipo para proteger tus datos.
Aprenderás de todo. Te lo aseguró, es un blog muy bueno y con información fácil de entender. Espero que pueda revisar este sitio y compartir tu opción al respecto estaré atento en atenderte.
Este script fue ejecutado con Python 3.9.13 en el sistema operativo Lubuntu 18.04.6.
Hello reader of my blog. And I continue with more sites. This time I present you the website upguard, here you will have access to information about cyber security, written by experts for users with little or no experience about computer security. You can learn about the latest vulnerabilities, the most alarming vulnerabilities and what are the most advanced measures you can apply to your computer to protect your data.
You will learn about everything. I assure you, it's a very good blog with easy to understand information. I hope I can review this site and share your option in this regard I will be attentive to assist you.
This script was run with Python 3.9.13 on Lubuntu 18.04.6 operating system.
import httpx
from selectolax.parser import HTMLParserheaders={'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75'}
client=httpx.Client(headers=headers)
upguard=client.get('https://www.upguard.com/blog').textupguard_html=HTMLParser(upguard)
for hl in upguard_html.css('div.card.card-blog > a '):
h=hl.text() l=hl.attributes['href'] print(f'headlines: {h} links: {l}')