Package rekall :: Package plugins :: Package common :: Package efilter_plugins :: Module helpers :: Class ListFilter
[frames] | no frames]

Class ListFilter

source code


A helper to filter a list of dicts using efilter.

Instance Methods
 
run_list(self) source code
 
filter(self, filter_exr, data, **query_args)
Filter the data using the filter expression.
source code
 
getmembers_runtime(self) (Inherited from rekall.plugins.common.efilter_plugins.helpers.EfilterRunner) source code
 
resolve(self, name) (Inherited from rekall.plugins.common.efilter_plugins.helpers.EfilterRunner) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

filter(self, filter_exr, data, **query_args)

source code 
Filter the data using the filter expression.

Args:
  filter_exr: essentially the where clause.
  data: A list of dicts, each dict representing a row.

Overrides: EfilterRunner.filter