I am new to python and I am not sure I use the right terminology so bear with me.
When I try to print a "large" object like what is returned from
history(...)
, it is being truncated, and '...' shows in the end.
For example when I do:
prices = history(5, '1d', 'price')
print 'prices = \n' + str(prices)
I get something like:
Equity(1267 [CAT]) Equity(1335 [C]) \
2011-01-04 00:00:00+00:00 93.66 49.0
2011-01-05 00:00:00+00:00 94.51 49.8
2011-01-06 00...
How can I force printing the whole thing?