util.mult_obj_views =================== .. py:module:: util.mult_obj_views .. autoapi-nested-parse:: This module contains helper functions for parsing HTTP GET and POST parameters. Functions --------- .. autoapisummary:: util.mult_obj_views.get_primary_keys_from_str_as_list_of_ints Module Contents --------------- .. py:function:: get_primary_keys_from_str_as_list_of_ints(pks) Gets the primary keys for a str as list[str]. :param pks: The string in the form //.../. Duplicate primary keys will cause a ValueError. A trailing / is allowed. :raises ValueError: If not all primary keys can be interpreted as integers or if duplicates where found. :returns: The list of primary keys.