I have a single quoted string for items separated by comma. Each item surrounded by quotes (") but items also contain comma (,). So using split(',') creates problems.
How can I split this text properly in Python?
An example of such string
'"coffee", "water, hot"'
What I want to achieve
["coffee", "water, hot"]
Thank you!