Description
Yield the tiddlers that are in this bag by calling
store.list_bag_tiddlers(bag). The tiddlers have
not been read from the store. This method is
deprecated in favor of interacting with the
store directly.
Parameters
Returns
- Python generator yielding empty tiddler objects.
Example
bag = Bag('somebag')
bag = store.get(bag)
for tiddler in control.get_tiddlers_from_bag(bag):
tiddler = store.get(tiddler)
print tiddler.title, tiddler.tags
Notes