<div dir="ltr">Thanks that helped me figure it out, and I would of never found this on my own.  Here is what I needed to do.<div><br></div><div><div>info = reader.GetExecutive().GetOutputInformation().GetInformationObject(0)</div><div>key = vtk.vtkStreamingDemandDrivenPipeline.TIME_STEPS()</div><div><br></div><div># info.Get(key) produces an error, not sure why.</div><div>n = info.Length(key)</div><div>times = [0]*n</div><div>for i in range(n):</div><div>    times[i] = info.Get(key, i) </div><div>print times</div></div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 19, 2015 at 10:39 AM, David Thompson <span dir="ltr"><<a href="mailto:david.thompson@kitware.com" target="_blank">david.thompson@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">> How do you extract the times (not timesteps) from ExodusIIReader? I am using VTK6.3 python bindings.<br>
<br>
</span>The reader's output information will have the vtkStreamingDemandDrivenPipeline::TIME_STEPS() key set to a vector of double values that are the time steps. You can ask the reader for its executive, obtain the output information from it, and get the value of the TIME_STEPS key from that. It will only be valid after UpdateInformation() has been called on the reader.<br>
<span class="HOEnZb"><font color="#888888"><br>
        David</font></span></blockquote></div><br></div>