Podziel ciąg według spacji - zachowanie cytowanych podłoży - w Pythonie

>>> import shlex
>>> shlex.split('this is "a test"')
['this', 'is', 'a test']
DreamCoder