Import data from selected row

I get table row by row id:
rows = base.get_row(“Users”, ‘SxWKu1-ATzaNGt9Y4LN8qw’)
How do I check if a word “user1” is in a list in “rows”?

This does not return a list of rows, but a single row as a JSON object.

You can use normal Python to work with the JSON object. Specifically, the find() method to search a particular string. If you want to search in a list, loop through the elements of the list.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.