I want to be able to filter out just 1, or perhaps all list items less than a certain index with glom, but the filter snippets in the snippet section of the glom documentation doesn't show me how to do that.
Example (keep just the 2 first items in a list):
target = [5, 7, 9]
some_glom_spec = "???"
out = glom(target, some_glom_spec)
assert out == [5, 7]
Good question! The approach you've got in your answer works, and you're on the right path with
enumerate
(that's the Pythonic way to iterate with index), but it could be more glom-y (and more efficient!). Here's how I do it:The third invocation of the lambda will return glom's
STOP
and glom will stop iterating on the list.You can read more about
STOP
(the glom singleton equivalent tobreak
), and its partnerSKIP
(the equivalent ofcontinue
) in the glom API docs here.