# Inspect Run Results

<figure><img src="https://2402701329-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F6wzqgDHj9mZbFxabiEbc%2Fuploads%2F9GBeA5uBXbPKQnNJP117%2FScreenshot%202025-03-29%20at%201.49.17%E2%80%AFPM.png?alt=media&#x26;token=e2e1fe97-f0a8-410c-bdcf-1f38f36e0bdc" alt=""><figcaption><p>Inspecting the results of a named-paths run</p></figcaption></figure>

Results come from CsvPaths's ResultsManager. You ask for the results of a named-paths run by name or reference. The return is a list of Result objects. Each Result has the CsvPath object that generated it, along with all the data and metadata that was produced. By default, the ResultsManager returns the most recent run.

```python
from csvpath import CsvPaths
CsvPath().get_named_results( name="orders" )
```
