Quote:
Originally Posted by mactastik
Similarly, set_field asks for a "mapping of book id's to values". What is that? And what is the "name" of the field if it's a user-defined field?
|
The "mapping" is documented in the set_field comments.
Code:
:param book_id_to_val_map: Mapping of book_ids to values that should be applied.
It is a python dict (map) from book id to value. Books with an id in the dict will have the field value changed to that id's value in the dict.
The name of the field is the lookup name, #something for custom columns.