Hola querido lector de mi blog. En esta ocasión te presento un nuevo sitio web y se llama nav, este es un sitio que proporciona cobertura informativa a sus lectores sobre temas relacionados con los negocios y tecnología para la pequeña empresa. El contenido está mayormente relacionado sobre recomendaciones para que las pequeñas empresas se sostengan a nivel financiero por medios de estrategias que les permita detectar una planificación financiera rentable, realizar análisis del mercado para que la pequeña empresa comprenda su posición y participación que compite con otras empresas de su sector y qué tecnologías pueden ayudar a las empresas adaptarse a las innovaciones para mejorar sus procesos administrativos o productivos. Esto que mencioné, son algunos de los temas que podrás encontrar en ese sitio.
Espero que puedas visitarlo y compartas tu opinión en los comentarios. Recuerda que siempre estaré aquí para atenderte y traer más sitios para ti. Gracias por tu tiempo, querido lector.
Este script fue ejecutado con Python 3.9.13 en el sistema operativo Lubuntu 18.04.6.
Hello dear reader of my blog. This time I present you a new website and it is called nav, this is a site that provides informative coverage to its readers on topics related to business and technology for small business. The content is mostly related to recommendations for small businesses to sustain themselves financially through strategies that allow them to detect a profitable financial planning, perform market analysis for small businesses to understand their position and participation that competes with other companies in their sector and what technologies can help companies adapt to innovations to improve their administrative or productive processes. These are some of the topics that you can find in this site.
I hope you can visit it and share your opinion in the comments. Remember that I will always be here to assist you and bring more sites for you. Thanks for your time, dear reader.
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/96.0.4664.93 Safari/537.36',
}url='https://www.nav.com/blog/'
client=httpx.Client()
nav=client.get(url,headers=headers).textnav_raw=HTMLParser(nav)
for find_data in nav_raw.css('a.swiper-slide.post-wrapper'):
headlines=find_data.text(strip=True) links=find_data.attributes['href'] print(f'headlines:{headlines} links:{links}')