I am using LSEG library in Python.
I was able to identify first 10,000 observation of any data set I want to obtain (e.g. VC investments, M&A deals). However, I cannot do pagination meaning going through data coming after 10,000th row.
- I tried to use skip + top, it gives skip + top cannot exceed 10,000 error.
- I tried filtering by using PermID:
“permid_filter = f"(OAPermID ge {start_permid} and OAPermID lt {start_permid + chunk_size})" But, it was unable to fetch any data.
How can I view and get entries after the top 10,000 observation from LSEG database? Could you help me with that or put me in a contact with someone who can help?