"Eval" a string in OCaml

I'm trying to "eval" a string representing an OCaml expression in OCaml. I'm looking to do something equivalent to Python's eval. So far I've not been able to find much. The Parsing module looks l...