Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 269 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 269 Bytes

lemonde

A python lib to access lemonde newspaper articles

Usage

from lemonde.lemonde import LeMonde

lm = LeMonde()
for article in lm.get_articles():
    print(article.title)
    print(article.type)
    print(article.image)
    print(article.link)