Search top 200 rows : anvil.server.SerializationError

From Anvil Docs | Using Data Tables from Python

The return value [from search()] is a SearchIterator , 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.

1 Like