Parse a string into a Python object.
Usage
from_string(text)
text: str
The string to parse.
object
The parsed object, or the original string if parsing fails.
>>> from_string("42") 42