loaders ยป comma_separated
comma_separated() โ list
comma_separated_items() โ list
comma_separated_list() โ list
Splits a comma-separated listing (single line, think a list of tags e.g.) into a list and strips whitespace.
enoTags: Coffee, Desk, Flavor
Categories: Computing , High performance , Cluster
python>>> document = parse(input)
>>> document.comma_separated('Tags')
['Coffee', 'Desk', 'Flavor']
>>> document.comma_separated('Categories')
['Computing', 'High performance', 'Cluster']