Get internal links from a web page Once we have read the content of the website, we will extract the internal links. We will search for html tags of the form <a href = ’…..’ that go to our website # -*- coding: iso-8859-15 -*- # Proyecto Web Scraping…
Category: Programming
Programming category
Web Scraping Course for SEO with Python – Class 2
Reading content from a web page with urllib The first step of the project would be to find a way to connect to a web page and read its content. In python there are numerous modules to perform various functions. To connect to a web page on the internet…
Web Scraping Course for SEO with Python – Class 1
Problem definition and development environment The idea of this project is to develop a real project with the Python programming language to introduce us to the different functionalities of the language and see practical cases. In this project, the Web Scraping technique will be developed, which consists of analyzing…
Programming with Python – Class 12
Functional programming In this class we will see a section of Python that gives it great power and that does not exist in other types of languages: functional programming. In Python you can use functions as if it were another type of data, that is, you can define functions, invoke…
Programming with Python – Class 11
Graphics We can extend the Python functionalities with a series of libraries or packages, in this and subsequent classes we will see some interesting libraries and how to use them. Libraries usually need to be loaded first and then import a reference to them into the program. In the Repl.it…