Using this it is possible to fetch user time line:
import pandas as pd
from stackapi import StackAPI
SITE = StackAPI('stackoverflow', key="please_add_your_key_here")
post = SITE.fetch('users/{ids}/timeline', ids=[5620], max_pages=10000000, page_size=100)
I can see that there are only 500 items, but I expect to have more than this.
How is it possible to fetch all items into one single api call?