Service account google sheets api

Service account google sheets api
When you need to access Google Sheets data from Python script you will need to prove that you have access to the resource. There are several options to authenticate to Google API, one of them is Service Account. We will show you how to get JSON file with credentials to access Google Sheets.

Steps

Creating JSON file with credentials to access Google Sheets API is fast and easy. It can be summarized with the following steps.

  1. Create a new project
  2. Enable Google Drive API and Google Sheets API
  3. Create Service Account credentials
  4. Download JSON file with credentials

The schema showing the concept of how does it work.

Service account google sheets api

Create a new project

Please open your Google Cloud console in your web browser. You can open it by navigating the https://console.cloud.google.com/.

In this example, we will create a new project. It will store all details about our connection to Google Sheets API. In my opinion, it is good to have a separate project for accessing a Sheets, because in the case of emergency it is easy to revoke the access.

If it is your first project then you will see the view similar like in the image below:

Service account google sheets api

If you already have some projects in your console, please click on project in the top menu bar, and you will have dialog window with NEW PROJECT button.

Service account google sheets api

The form for project creation will be displayed. Just set the name and click CREATE. In this example, Iโ€™ve used mljar-sheets-project as a name. You can leave Location field empty.

Service account google sheets api

After Project creation, you should see view like in the image below. Please click ENABLE APIS AND SERVICES button to add access to selected APIs.

Service account google sheets api

Enable access to APIs in project

In the next step, we will need to enable access to APIs for our project. The project will need to have access to:

  • Google Drive API,
  • Google Sheets API

Why do we need to give additional access to Google Drive API? Itโ€™s because Google Sheets are stored in Google Drive. Changes made on Sheets are also changes on files in the Google Drive.

Letโ€™s search for Google Drive API:

Service account google sheets api

When you found it, just click ENABLE button:

Service account google sheets api

After API is enabled, you will see the below view. Please click on APIs & Service in the left menu.

Service account google sheets api

We need to search one more API. Please enter Google Sheets API in the search box:

Service account google sheets api

Like before, please enable it with ENABLE button:

Service account google sheets api

Create Service Account credentials

After enabling both (Drive and Sheets) APIs you will have the view like in the image below. You can click there CREATE CREDENTIALS button.

Service account google sheets api

The other option for credentials creation is to go to the project dashboard and click CREATE CREDENTIALS button there:

Service account google sheets api

You will have a menu displayed with several options. Please select Service account.

Service account google sheets api

Service Account option will create a new account that we will use only to access Google Sheets API. Google Cloud will create a new email associated with Service Account. We will share selected Spreadsheets with that email. Such solution is good and safe in my opinion. We have an option to set a granular access to the resources that we want to share with our script. In the case of stolen credentials, we simply remove the credentials or even a whole project.

Please fill the Service account name and click CREATE AND CONTINE.

Service account google sheets api

In the next step, set access to the project. In this example, I set the role to Owner. You can set more restrictive role if needed. Click DONE button.

Service account google sheets api

Create JSON file with credentials

After creating the Service Account you will see a view with your credentials. Please click on your Service Account.

Service account google sheets api

You will see its details. Please select KEYS tab.

Service account google sheets api

In the KEYS view, just click ADD KEY and Create new key:

Service account google sheets api

You will see a dialog where you can select the key format. Please select JSON (should be the default) and click CREATE. It should start download of your JSON file with credentials.

Service account google sheets api

Congratulations! The JSON file is ready to use in your Python scripts. Letโ€™s test it.

Authenticate in Python

I will use Python code that is generated with MLJAR Studio notebook:

import gspread
# connect got Google Sheets
gspread_client = gspread.service_account(filename="/path/to/your/credentials.json")
# list all available spreadsheets
spreadsheets = gspread_client.openall()
if spreadsheets:
    print("Available spreadsheets:")
    for spreadsheet in spreadsheets:
        print("Title:", spreadsheet.title, "URL:", spreadsheet.url)
else:
    print("No spreadsheets available")
    print("Please share the spreadsheet with Service Account email")
    print(gspread_client.auth.signer_email)

This is how it looks in the MLJAR Studio:

Service account google sheets api

You should see the message that no spreadsheets are available. You will see also an email that is associated with Service account. You need to share Spreadsheets with that email.

The email can be also checked in Credentials view in Google Cloud Console:

Service account google sheets api

You share the Spreadsheet with Service Account email in the same way as you will share with a friend:

Service account google sheets api

Remove the project

If you would like to remove the project, please click three dots near your profile picture in the top right corner and select Project settings.

Service account google sheets api

There, please click SHUT DOWN to delete the project.

Service account google sheets api

Thatโ€™all, project is scheduled for removal.

Summary

In this article you have created a JSON file with credentials to authenticate Python code to access Google Sheets data. We use Service Account credentials. To have access to the selected Spreadsheet, it needs to be shared with email associated with Service Account. It is much safer apporach than sharing all your Spreadsheets at once.

We are looking for feedback or comments from you. You can reach us by email to Ola.

We are working on MLJAR Studio desktop application. It is a no-code framework for creating Python scripts. The application is still under the development. If you would like to be informed about the release please fill the form.



๐Ÿ’Œ Join our newsletter ๐Ÿ’Œ

Subscribe to our newsletter to receive product updates


Service account google sheets api

Share your Python Notebooks with others



How do I share a Google spreadsheet with a service account?

Share Google Sheet with Service Account ๐Ÿ”— Share the Google Sheet with the service account email (above) as an editor: Click that Share button in the top-right of your Sheet. (Name your Sheet if you haven't done so). The service account email should autocomplete for a valid service account.

Can Google Sheets connect to API?

The Google Sheets API lets you read, write, and format Google Sheets data with your preferred programming language, including Java, JavaScript, and Python.

Is Googlesheet API free?

All use of the Google Sheets API is available at no additional cost. Exceeding the quota request limits doesn't incur extra charges and your account is not billed.

How do I access Google services account drive?

Procedure.
Go to Google API Console..
Open the Service accounts page. If prompted, select your project..
Click CREATE SERVICE ACCOUNT..
In the Create service account window, type a name for the service account, select Furnish a new private key and then the key type JSON..
Click Create..