masaccio / numbers-parser

Python module for parsing Apple Numbers .numbers files
MIT License
208 stars 15 forks source link

How to search for a specific text in a table? #70

Closed coachrye closed 11 months ago

coachrye commented 11 months ago

Hi,

Is there a way to easily search for a specific text in a table? Or do I really need to use iter_rows or iter_cols?

Thanks!

masaccio commented 11 months ago

There's no search implemented. Using sheet.tables[0].rows(values_only=True) gets you a list of lists and is efficient as possible given how Numbers data is stored.

coachrye commented 11 months ago

Thanks for taking the time to respond, @masaccio ! Happy holidays to you! Cheers.