Skip to main content

No project description provided

Project description

pandasheets

Logo

pandasheets is a convenient wrapper around gspread that simplifies common operations (such as downloading, uploading, and appending) when working with Google Sheets using Pandas.

Getting Started

To use pandasheets, you need to set up a Google Cloud service account credential that grants your code access to manage spreadsheets on your behalf. Below are the steps to create and configure these credentials.

1. Enable API access for your project

  1. Go to the Google Cloud Console.
  2. From the left-hand navigation menu, select APIs & Services.
  3. Click Enable APIs & Services, then Create project if you don’t already have one.
  4. Provide a Project name and Location, then click Create.

2. Create a Service Account Credential

  1. Under APIs & Services, click Credentials.
  2. Select Create credentials and choose Service account.
  3. Fill out the required fields (e.g., name, description).
  4. Copy the generated email address (it ends with iam.gserviceaccount.com, e.g., myserviceaccount@my-awesome-project.iam.gserviceaccount.com).
  5. Click Create and continue.
  6. Assign a suitable Role for the service account.
  7. Finalize the creation process.

3. Generate the JSON key

  1. On the Service Accounts page, locate the service account you just created.
  2. Click on it to view the details.
  3. In the top menu, select Keys.
  4. Click Add key > Create new key > JSON > Create.
  5. A JSON file will be downloaded. Store it in a secure location.

4. Enable the Google Sheets API

  1. Return to APIs & Services in the Google Cloud Console.
  2. Click Enable APIs and services.
  3. Search for and select Google Sheets API.
  4. Click Enable.

5. Enable the Google Drive API

Repeat the process from Step 4 to enable the Google Drive API.

6. Share your spreadsheet

Finally, open the Google Sheet you want to access and click Share. Enter the service account email you copied in Step 2, and grant appropriate permissions (e.g., Editor). Click Done.

Important: Make sure the service account email has permission to access the spreadsheet and that both the Google Sheets API and the Google Drive API are enabled in your project.

Installation

pip install pandasheets

Usage

Downloading a sheet from Google Sheets into a DataFrame

import pandasheets as ps

# Define the sheet name, spreadsheet name, and path to the JSON credential file

sheet = "mySheet" # sheet to be downloaded and loaded as a DataFrame
spreadsheet = "mySpreadsheet" # Name of the spreadsheet containing the sheet
credential = "myCredential.json" # Path to the JSON credential file

# Download the sheet and load it as a DataFrame
df = ps.get_sheet_to_dataframe(
    sheet=sheet,
    spreadsheet=spreadsheet,
    credential=credential
)

Uploading a DataFrame to a new sheet

import pandasheets as ps

# Define your DataFrame, target sheet, spreadsheet name, and credential file

df = myDf # DataFrame to be uploaded
sheet = "mySheet" # Target sheet name for the upload
spreadsheet = "mySpreadsheet" # Name of the spreadsheet where the sheet will be created
credential = "myCredential.json" # Path to the JSON credential file

ps.upload_dataframe_to_spreadsheet(
    df=df,
    sheet=sheet,
    spreadsheet=spreadsheet,
    credential=credential
)

By default, the DataFrame will be uploaded formatted as:

  • Bold header
  • All cells in columns A to Z are set to clip text wrapping
  • The first row is frozen to keep the headers visible during scrolling.

If you wish to avoid the default formatting, call the function with the formatting parameter set to False:

ps.get_sheet_to_dataframe(
    df=df,
    sheet=sheet,
    spreadsheet=spreadsheet,
    credential=credential,
    formatting=False
)

Important: If a sheet with the same name already exists in the specified spreadsheet, a ValueError will be raised. The target spreadsheet must exist prior to uploading the sheet, otherwise an exception will be raised. No new spreadsheet will be created automatically.

Appending a DataFrame to an existing sheet

import pandasheets as ps

# Create a sample DataFrame to be appended
df_to_append = pd.DataFram({
    "column_A": ["A1", "A2", "A3"],
    "column_B": ["B1", "B2", "B3"],
})

sheet = "mySheet" # Sheet name to which the data will be appended
spreadsheet = "mySpreadsheet" # Spreadsheet name where the sheet exists
credential = "myCredential.json" # Path to the JSON credential file

ps.append_dataframe_to_sheet(
    df=df_to_append,
    sheet=sheet,
    spreadsheet=spreadsheet,
    credential=credential
)

Important: Only values for existing columns in the sheet are appended. Missing values in the DataFrame (present in the sheet) are set as empty strings. Duplicate values are not appended by default.

If duplicate values are acceptable and you would like to append them, set the duplicates parameter to True:

ps.append_dataframe_to_sheet(
    df=df,
    sheet=sheet,
    spreadsheet=spreadsheet,
    credential=credential,
    duplicates=True
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pandasheets-0.1.tar.gz (44.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pandasheets-0.1-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

Details for the file pandasheets-0.1.tar.gz.

File metadata

  • Download URL: pandasheets-0.1.tar.gz
  • Upload date:
  • Size: 44.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pandasheets-0.1.tar.gz
Algorithm Hash digest
SHA256 cb2394ef3f193f76cecfde434faad44d53f8b1dc9ff70a65ad3684550dc11938
MD5 ba7d4caa4c9dfa658be57fc60818ec60
BLAKE2b-256 597900ad647e05f8749eadb31945a4c6ff981567d6c394ae820709a64327e915

See more details on using hashes here.

Provenance

The following attestation bundles were made for pandasheets-0.1.tar.gz:

Publisher: publish.yml on diegomagela/pandasheets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pandasheets-0.1-py3-none-any.whl.

File metadata

  • Download URL: pandasheets-0.1-py3-none-any.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pandasheets-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bb4fd1d24e7fb8a5d1e1254b716a36541f09711a87c7dedcd36fb59003bd8535
MD5 a0fc8c70a67039d537e1cdd910d56691
BLAKE2b-256 b6b78c00676b52dd441da9a7d060d11d7e1ad0ba7fc4e71bb448922ba36889ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pandasheets-0.1-py3-none-any.whl:

Publisher: publish.yml on diegomagela/pandasheets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page