## from_string()


Parse a string into a Python object.


Usage


``` python
from_string(text)
```


## Parameters


`text: str`  
The string to parse.


## Returns


`object`  
The parsed object, or the original string if parsing fails.


## Examples

``` python
>>> from_string("42")
```

42
