I use this module: https://github.com/codelucas/newspaper to download bitcoin articles from https://news.bitcoin.com/. But when I try to get next articles from next page 'https://news.bitcoin.com/page/2/page' I get same output. Same for any other page.
I have tried with different sites and different starting pages. The articles from first link I used were displayed on all other links.
import newspaper
url = 'https://news.bitcoin.com/page/2'
btc_articles = newspaper.build(url, memoize_articles = False)
for article in btc_articles.articles:
print(article.url)