libtmux Reference MCP Search
On this page

libtmux._internal.query_list.parse_lookup

View as Markdown

Module
libtmux._internal.query_list
Package
libtmux
Source
src/libtmux/_internal/query_list.py
parse_lookup ( obj : Mapping[str, t.Any] , path : str , lookup : str ) t.Any | None
function [source]
function [source]
parse_lookup

Check if field lookup key, e.g. "my__path__contains" has comparator, return val.

If comparator not used or value not found, return None.

>>> parse_lookup({ "food": "red apple" }, "food__istartswith", "__istartswith") 'red apple'

It can also look up objects:

>>> from dataclasses import dataclass

>>> @dataclass() ... class Inventory: ... food: str

>>> item = Inventory(food="red apple")

>>> item Inventory(food='red apple')

>>> parse_lookup(item, "food__istartswith", "__istartswith") 'red apple'

0 declared, 0 inherited

Esc

Type to search.