I am using pydrive to read a file:
file_list = drive.ListFile({'q': "'root' in parents and trashed=false"}).GetList()
print(file_list)
took = False
for file1 in file_list:
print('title: %s, id: %s' % (file1['title'], file1['id']))
And get list of files:
title: wikipedia.txt, id: 1emuNuhM0nMkKQEiABW4lcSn7CznTDR-w
title: wiki_2000_rows.csv, id: 1Kjs84pwQVXKyZKXPfbiQIy6QLtwIldcN
I want to read the file
wiki_2000_rows.csv
and put it's content into a dataframe but couldn't find how to do it. Can it be done? How can I read the content of the files?