from eurofx import * historical = get_historical_data() print historical.__len__() print historical[-1:] daily_df = get_daily_data_df() print daily_df historical_df = get_historical_data_df() print historical_df.head() import matplotlib.pyplot as plt plt.plot(historical_df['USD'])