Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 561 Bytes

File metadata and controls

29 lines (20 loc) · 561 Bytes
layout api-command
language Python
permalink api/python/for_each/
command for_each
related_commands
map
map/

Command syntax

{% apibody %} sequence.for_each(write_function) → object {% endapibody %}

Description

Loop over a sequence, evaluating the given write query for each element.

Example: Now that our heroes have defeated their villains, we can safely remove them from the villain table.

r.table('marvel').for_each(
    lambda hero: r.table('villains').get(hero['villainDefeated']).delete()
).run(conn)