> I agree with you. As far as the CPE example goes it is just a matter of
> adding
> 
> for song in store.find(Song, Song.album == album):
>    store.remove(song)

Indeed.  You can write that more easily as:

    store.find(Song, album=album).remove()

-- 
Gustavo Niemeyer
http://niemeyer.net

-- 
storm mailing list
[email protected]
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/storm

Reply via email to