Hola lector de mi blog. Continuo con mi pequeña labor de convertir mi blog en uno agregador de sitios web sobre páginas de noticias o blogs con relación a los temas de economía, ciencias y tecnología. En este caso te presento focus.business este no es más que un blog que ofrece a sus lectores la oportunidad de recibir consejos,estrategias o asesorías con el propósito de ayudar a mejorar el desempeño laboral en las empresas mediante cambios de organizativos que permitan a las empresas tener una mejor relación con su entorno competitivo y a su vez genere cambios positivos en su estructura interna, lo que se traslada en una mejora de rendimiento, incremento de productividad y una cultural organizativa sólida capaz de adaptarse a cambios que perjudiquen a la empresa.
Espero que puedas consultar este sitio web y me dejes tu opinión al respecto, estaré por aquí atento a responder tus comentarios. Si no, te espero en la próxima entrega con la posibilidad de conversar con usted. Gracias por leer estas pequeña líneas.
Este script fue ejecutado con Python 3.9.13 en el sistema operativo Lubuntu 18.04.6.
Hello reader of my blog. I continue with my small task of turning my blog into an aggregator of websites about news pages or blogs related to economics, science and technology. In this case I present focus.business this is nothing more than a blog that offers its readers the opportunity to receive tips, strategies or advice in order to help improve job performance in companies through organizational changes that allow companies to have a better relationship with their competitive environment and in turn generate positive changes in its internal structure, which translates into improved performance, increased productivity and a strong organizational culture capable of adapting to changes that harm the company.
I hope you can consult this website and leave me your opinion about it, I will be here to answer your comments. If not, I'll be waiting for you in the next installment with the possibility of talking with you. Thank you for reading these few lines.
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'}
for get_index in range(1,10):
client=httpx.Client() focus_business=client.get(f'https://focus.business/blog/page/{get_index}/',headers=headers).text focus_business_raw=HTMLParser(focus_business) for find_hl in focus_business_raw.css("div > h2 > a"): print(f"Titles: {find_hl.text(strip=True)}, Links: {find_hl.attrs['href']}")