From Anvil Docs | Using Data Tables from Python
The return value [from
search()
] is aSearchIterator
, an iterator of Row objects.
So, if you eliminate the [0:200]
, it will return a SearchIterator
. Then it is up to the caller to apply the [0:200]
, or whatever limits it actually needs.