Skip to content

Repository files navigation

datasheets

pip_versionstravis_cicoveralls

datasheets is a library for interfacing with Google Sheets, including reading data from, writing data to, and modifying the formatting of Google Sheets. It is built on top of Google's google-api-python-client, google_auth, and google_auth_oauthlib libraries using the Google Drive v3 and Google Sheets v4 REST APIs.

It can be installed with pip via pip install datasheets.

Detailed information can be found in the documentation.

Basic Usage

Get the necessary OAuth credentials from the Google Developer Console as described in Getting OAuth Credentials.

After that, using datasheets looks like:

importdatasheets# Create a data set to uploadimportpandasaspddf=pd.DataFrame([('a', 1.3), ('b', 2.7), ('c', 3.9)], columns=['letter', 'number'])
client=datasheets.Client()
workbook=client.create_workbook('my_new_workbook')
tab=workbook.create_tab('my_new_tab')
# Upload a data settab.insert_data(df, index=False)
# Fetch the data againdf_again=tab.fetch_data()
# Show workbooks you have access to; this may be slow if you are shared on many workbooksclient.fetch_workbooks_info()
# Show tabs within a given workbookworkbook.fetch_tab_names()

For further information, see the documentation.

License

Copyright 2018 Squarespace, INC.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

Read data from, write data to, and modify the formatting of Google Sheets

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages