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.…
Category: Programming
Programming category
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…
Interview with a Computer Scientist
We are going to start a series of fictitious interviews with a computer scientist to find out a bit about the current world of computing and what opinions may be valid for us to delve into what companies demand. These types of interviews are short questions and answers on various…
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.