Skip to content

Let GetMultipleItems accept a list of ID strings #19

@eike-welk

Description

@eike-welk

Currently shopping.GetMultipleItems expects the item IDs as a single string with comma separated values. This is inelegant, because a Python program normally stores item IDs in a list of strings, or generally in an iterable. Writing before the call to GetMultipleItems:

ids_str = ",".join(ids)

Is not a big pain, but this line should be IMHO in GetMultipleItems. Therefore:

Please modify shopping.GetMultipleItems, so that its argument item_id accepts an iterable that contains item ID strings.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions