Currently, the primary way of accessing our API is through our Python package which can be found here: https://pypi.org/project/quantglobal/
Our data is returned as a DataFrame object, so if you’d like to use a different language for data analysis and/or implementation, we recommend first exporting the DataFrame object to a CSV file. Below is a sample code snippet that does exactly that:
import QuantGlobal as qg import pandas as pd data = qg.download(params) data.to_csv('C:\\your_directory\\your_desired_name.csv')