Student task: Rewrite program with Beautiful Soup module The task is to get the Beautiful Soup module and rewrite the code to make it shorter and more functional. In a few days we will put a solution to this task.
Category: Courses
Courses category
Web Scraping Course for SEO – Class 12
Task for the student: Generate HTML file to display in Internet browser It is left as a task for the student to show the results on an HTML web page to show the results directly in an internet browser. In a few days we will put the solution to this exercise.…
Web Scraping Course for SEO – Class 11
Conversion to Python version 3.6 In this class we will convert our program from version 2.7 to version 3.6 # Proyecto Web Scraping para SEO con Python # Clase 11: Conversión a Python versión 3.6 # webscrap11 import urllib.request, urllib.parse, urllib.error import re import sys url_sitio = “https://evginformatica.blogspot.com/” url_inicio=url_sitio…
Web Scraping Course with Python – Class 10
Save results to file In this class we will see how we can write the results to a file instead of the console. To write the results to a file we can proceed in several ways: . open a file and change print to write . redirect standard output to…
Web Scraping Course for SEO – Class 9
Student task: Get tag <h1> It is left as an exercise for the student to obtain the h1 tag from each web page.