-
Notifications
You must be signed in to change notification settings - Fork 948
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document creation of a Pandas DataFrame from gspread #138
Comments
After I posted it, I found the following snippets which allows you to create Pandas DataFrame import gspread
import pandas
gc = gspread.login('my@email.com', 'supersecretekey')
book = gc.open('My Spreadsheet')
sheet = book.sheet1 #in this case
dataframe = pandas.DataFrame(sheet.get_all_records()) |
I'm very happy to see Pandas support being brought into the mix! James On Jun 7, 2014, at 5:19 AM, Sudar notifications@github.com wrote:
|
What about pandas -> gspread? |
That would be an awesome feature. |
So it appears this is a very easy operation every without a dedicated call. I don't think it warrants a change to the code but it might be useful to add this to the documentation in case anyone else has this use-case. |
Gspread -> Pandans is covered in the documentation: Examples Closing this issue. |
Would be a nice feature to have.
The text was updated successfully, but these errors were encountered: