Get metatag description On each page we will obtain the description included in the metatag <meta content = ‘…’ name = ‘description’ /> # -*- coding: iso-8859-15 -*- # Proyecto Web Scraping para SEO con Python # Clase 8: Obtener metatag description# webscrap8 import urllib import re url_sitio =…
Category: Programming
Programming category
Web Scraping Course for SEO – Class 7
Get metatag title On each page we will obtain the title included in the html <title> tag # -*- coding: iso-8859-15 -*- # Web Scraping Course for SEO with Python # Class 7: Get metatag title# webscrap7 import urllib import re url_sitio = “https://evginformatica.blogspot.com/” url_inicio=url_sitio lista_enlaces = [] titulos…
Web Scraping Course for SEO – Class 6
Find all internal links From the previous step we will look for all the internal links of the website, going through each page that we find and looking for links within. # -*- coding: iso-8859-15 -*- # Proyecto Web Scraping para SEO con Python # Clase 6: Buscar todos los…
Web Scraping Course for SEO – Class 5
Create list of valid links Of the previously obtained links we are going to discard some that are not web pages or are used for searches. The obtained links will put them in a list # -*- coding: iso-8859-15 -*- # Proyecto Web Scraping para SEO con Python…
Web Scraping Course for SEO with Python – Class 4
Decode links and see accents In this step we are going to replace the special characters decoding the links # -*- coding: iso-8859-15 -*- # Proyecto Web Scraping para SEO con Python # Clase 4: Decodificar enlaces y ver acentos # webscrap4 import urllib import re url = “https://evginformatica.blogspot.com/” htmluni =…