[ESP-ENG] Titulos y enlaces en unbounce || Titles and links in unbounce

avatar

Preview.png

Imagen diseñada con canva || Image designed with canva

Hola lector de mi blog. Espero que la estés pasando bien. El sitio de hoy se llama unbounce. unbounce es una empresa que productos en línea para que puedas desarrollar sitios de destino sin contar con ningún tipo de experiencia en programación, solo valerte de tu creatividad para crear un sitio web atractivo para tus visitantes, pero tambien tiene recursos adicionales como plantillas o su IA que pueden inspirarte en tus diseños. Básicamente, su principal producto es un Website Builder como el editor de Elementor o DIVI en WordPress. Del resto, solo son sugerencias o ideas que puedes referenciar para tu proyecto en línea sea para fines comerciales o producir un blog personal.

En fin, si eres diseñador web lowcode que gusta de usar CMS y quieres buscar alternativas a WordPress, esta puede ser una buena opción.

Aquí culmino esta pequeña breve entrega, gracias por tu tiempo. Hasta la próxima.

Este script fue ejecutado con Python 3.9.13 en el sistema operativo Lubuntu 18.04.6.

Hello reader of my blog. I hope you are having a good time. Today's site is called unbounce. unbounce is a company that products online so you can develop target sites without any programming experience, just use your creativity to create an attractive website for your visitors, but also has additional resources such as templates or their AI that can inspire you in your designs. Basically, their main product is a Website Builder like the Elementor or DIVI editor in WordPress. From the rest, they are just suggestions or ideas that you can reference for your online project either for commercial purposes or to produce a personal blog.

Anyway, if you are a lowcode web designer who likes to use CMS and want to look for alternatives to WordPress, this can be a good option.

This is the end of this short article, thanks for your time. See you next time.

This script was run with Python 3.9.13 on Lubuntu 18.04.6 operating system.

import httpx
from selectolax.parser import HTMLParser

headers={'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 index in range(1,5):

client=httpx.Client()
unbounce=client.get(f'https://unbounce.com/blog/page/{index}/',headers=headers,follow_redirects=True).text
unbounce_raw_html=HTMLParser(unbounce)

for hl in unbounce_raw_html.css('h3 > a'):

    print(f"Titles: {hl.text(strip=True)},Links: {hl.attrs['href']}")   

result.png


Text translated by DeepL



1 comments
avatar

Congratulations @pynomiems! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s):

You received more than 3000 upvotes.
Your next target is to reach 3250 upvotes.

You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word STOP

Support the HiveBuzz project. Vote for our proposal!
0
0
0.000