Hello,
I've been trying to use boxsdk to access files I have on box via Python. I'm am able to create a Client with a developer token and OAuth2 object. Then I try to get the file contents with a file_id and load things in with pandas with the following:
file_content = client.file(file_id).content(file_version=None, byte_range=None)
s=str(file_content,'utf-8')
data = StringIO(s)
df=pd.read_csv(data)