A compact scraping library for the major newspapers of Chile
ChileScrapper can be installed with Pip:
pip install chilescrapper
Newspaper | Name |
---|---|
El Mercurio | emol |
La Tercera | la_tercera |
El Mostrador | el_mostrador |
import chilescrapper
scrapper = chilescrapper.Scrapper("la_tercera")
articles = scrapper.fetch(max_n=30)
for article in articles:
print(article.title)
This library is licensed under the MIT Licence, please refer to the LICENCE file for more information.