This post is similar to How can I retrieve all posts from a Blogger (blogspot.com) blog?
I do
import feedparser
url = feedparser.parse('https://www.blogger.com/feeds/1020819187099399113/posts/default?max-results=1000')
for x in url.entries:
print (str(x.link))
I point out max-results=1000
but
len(url['entries'])
500
So how to overcome this limitation? Or is there another way to parse all url's from blogspot.com blog?