I have the impression that the maximum number of echoes when requesting using facets is 10 000. I don't see that mentionned in the README or in the doc. Is it possible to get more results ? (maybe I am doing something wrong)
Otherwise, mentionning that in the README would be useful.
import openfoodfacts
import pandas as pd
brands = openfoodfacts.facets.get_brands()
brands = pd.json_normalize(brands)
brands.shape
# (10000, 5)
packagings = openfoodfacts.facets.get_packaging()
packagings = pd.json_normalize(packagings)
packagings.shape
# (10000, 6)
I have the impression that the maximum number of echoes when requesting using
facetsis 10 000. I don't see that mentionned in theREADMEor in thedoc. Is it possible to get more results ? (maybe I am doing something wrong)Otherwise, mentionning that in the
READMEwould be useful.