Description
Yield the
tiddlers which result from filtering the provided iterator of tiddlers the provided
filters.
Parameters
- iterator of tiddlers
- filters, either as filter string or a list of filter methods
Returns
- Python generator yielding empty tiddler objects.
Example
# get those tiddlers in somebag which are tagged systemConfig
bag = Bag('somebag')
bag = store.get(bag)
for tiddler in control.filter_tiddlers(store.list_bag_tiddlers(bag), 'select=tag:systemConfig')
print tiddler.title
Notes
The tiddlers provided to filter_tiddlers do not need to fully instantiated from the store. If they are not, the filter will read them in for you. This helps to save memory at the expense of sometimes make more calls to get single tiddlers from the store.