HiI'm wondering how to execute a query more than once?>>> from asq.initiators import query>>> l = [1,2,3,4]>>> q = query(l).where(lambda x: x > 2)>>> q.to_list()[3, 4]>>> q.to_list()[]For example, the first time to_list() is called [3,4] is returned, but when subsequent calls are made, empty results [] are returned . Is there some way of using the same query more than once? I noticed the same thing happens when you use a standard python filter.Thanks for the cool library!Jamie--
You received this message because you are subscribed to the Google Groups "asq-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to asq-discuss...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.