Generate data and reports from Google Sheets and Drive
Project description
Google Slides Automator 📠
This repository contains a python package for generating Google Slide reports for different combinations of entities. It works by replacing placeholders in a slide template with data from a Google Sheets for each entity.
Following elements in a slide can be replaced,
- Text placeholders in a paragraph
- Charts
- Tables
- Pictures
The real value of this package is the ability to generate a report for different entities. By providing the raw data for each entity the package in a structured format, the code can generate reports for each entity. This is useful when you have a large number of entities and you want to generate reports of the same structure.
Getting Started
Requirements to run the package are:
- Python 3.11 or above.
- Google Sheets, Slides and Drive API enabled Google Clouds service account credentials.
- A shared Google Drive containing slide and data templates and raw data.
Service Account Setup
- Create a service account in Google Cloud Console with the following scopes:
- Download the JSON key file and save it as
service-account-credentials.jsonfile. - Important: Give full access to the service account email (found in the JSON file as
client_email) to the shared drive where the reports will be generated.
If you see "File not found" errors when trying to delete files, it means the service account doesn't have access to those files. The error messages will include the service account email that needs to be granted access.
How it works
The package works exclusively on Shared Google Drive files only. One of the inputs to the package will be a Google Drive folder id. The package expects the Google Drive to have the exact structure as below.
/
├── L0-Raw/
├── L1-Merged/
├── L2-Slide/
├── L3-PDF/
├── Templates/
│ ├── slide-template.gslide
│ ├── data-template.gsheet
│ └── ...
└── entities.csv
- Templates - This folder contains 2 files. A data template gsheet file and a slide template gslide file. Users of the library need to provide the slide template and the data template in this folder. Data template is used to generate the charts from the raw data and the slide template provides structure of the report with placeholders for the data.
- L0-Raw - This folder contains the raw data for each entity. This folder will have sub folders for each entity. Each entity folder will have the raw data for each slide and also the pictures used in the slides. Users of the library need to provide the raw data in this folder.
- L1-Merged (Auto Generated) - This folder contains the processed and structured spreadsheet per entity, used to generate charts. This folder will have sub folders for each entity. Each entity folder will have a spreadsheet for each slide and also the pictures used in the slides. This folder is automatically generated by the library.
- L2-Slide (Auto Generated) - This folder contains the Google Slide reports for each entity. These are generated by cloning the slide template and replacing the placeholders with the data from the L1-Merged sheet. This folder is automatically generated by the library.
- L3-PDF (Auto Generated) - This folder contains the PDF reports for each entity. These are generated by converting the Google Slide reports to PDF format. This folder is automatically generated by the library.
- entities.csv - A csv with four columns: first column is the entity name (like Volvo, Audi if entities are cars); the second column
L1controls transformation for L0 to L1. It accepts a Y to process or N/empty to skip. The third columnL2controls the slides to be generated for the entity. It accepts a number or a range of numbers or a combination of both like1,2,3or1-3or1,2,3,5-7. If you want to generate all slides, you can useAllor leave it empty to not process slides. The fourth columnL3controls the generation of the PDF report. It accepts a Y to process or N to skip/empty to skip. Users of the library need to provide the entities.csv file in the root of the drive.
Following is a workflow diagram to understand the flow.
To understand the data better refer to the drive below which contains sample data for a couple of bike dealers.
https://drive.google.com/drive/u/0/folders/0AIQQEzDV8s96Uk9PVA
Why is L0-Raw needed?
Technically, if you are able to generate data in the L1-Merged structure you do not need L0-Raw. However, not all programming languages have good API's to interact with Google Sheets like R. So to be compatible in such scenarios the library provides L0-Raw as just csv files. But if have the ability to generate merged data for L1, skip L0 data generation.
Quick Start
In order to use the package you need to setup the drive and the package.
Setup Drive
Set a shared Google Drive with the structure like the example above. Create a entities.csv file in the root of the drive with the entities to process. An example of this csv is shown below.
entity_name,L1,L2,L3
entity-1,Y,1,Y
entity-2,Y,All,Y
entity-3,
When you generate the report for the above configuration, the package will generate the L1-Merged, L2-Slide, and L3-PDF for the entities entity-1 and entity-2. The entity entity-3 will be skipped because it has L1 set to N.
Setup Package
The library provides a unified interface to generate L1-Merged, L2-Slides, and L3-PDF. The processing is controlled by the entities.csv file, which specifies which entities to process and which levels to generate for each entity.
Installation
Install the package using pip:
pip install gslides_automator
Usage
As a CLI tool
After installation, you can use the library as a CLI tool:
gslides_automator generate --shared-drive-url <shared-drive-url> [--service-account-credentials <path>]
Arguments:
--shared-drive-url(required): The Google Drive Shared Drive root URL or folder ID that contains L0/L1/L2/L3 data and templates.--service-account-credentials(optional): Path to the service account JSON key file. Defaults toservice-account-credentials.jsonin the project root.
Example:
gslides_automator generate --shared-drive-url https://drive.google.com/drive/folders/1EaaTMa5H6EOuWMom_4iE6RZ51qWYf2af
As a Python module
You can also run it as a Python module:
python -m gslides_automator generate --shared-drive-url <shared-drive-url> [--service-account-credentials <path>]
As a Python API
For programmatic usage, import and use the generate function:
from gslides_automator import generate
from gslides_automator.auth import get_oauth_credentials
from gslides_automator.drive_layout import resolve_layout
# Get credentials
creds = get_oauth_credentials(service_account_credentials="path/to/credentials.json")
# Resolve the drive layout
layout = resolve_layout("https://drive.google.com/drive/folders/1EaaTMa5H6EOuWMom_4iE6RZ51qWYf2af", creds)
# Generate reports
result = generate(creds=creds, layout=layout)
print(f"Successful: {result['successful']}")
print(f"Failed: {result['failed']}")
The generate function processes all entities from entities.csv sequentially and returns a dictionary with 'successful' and 'failed' lists of entity names.
As a package in RScript
The library can be used from R using the reticulate package:
library(reticulate)
generate_reports_via_python <- function(
shared_drive_url,
service_account_credentials,
python_env = "/path/to/python-env"
) {
reticulate::use_virtualenv(python_env, required = TRUE)
ga <- reticulate::import("gslides_automator")
auth <- reticulate::import("gslides_automator.auth")
drive_layout <- reticulate::import("gslides_automator.drive_layout")
creds <- auth$get_oauth_credentials(service_account_credentials = service_account_credentials)
layout <- drive_layout$resolve_layout(shared_drive_url, creds)
result <- ga$generate(creds = creds, layout = layout)
return(result)
}
result <- generate_reports_via_python(
shared_drive_url = "https://drive.google.com/drive/folders/00000000000000",
service_account_credentials = "/path/to/service-account-credentials.json"
)
print(result)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gslides_automator-0.5.0.tar.gz.
File metadata
- Download URL: gslides_automator-0.5.0.tar.gz
- Upload date:
- Size: 52.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28f596cecf283a9e0eb1b2f639843928a363b77cc236e5e58a0314081fefbeb6
|
|
| MD5 |
b0a14cf25191d79e091ce43d59d7a43c
|
|
| BLAKE2b-256 |
1bb3612bfdab25673890fe92c52306bf2487e2ccce8c3b3e44c511b7d6609975
|
File details
Details for the file gslides_automator-0.5.0-py3-none-any.whl.
File metadata
- Download URL: gslides_automator-0.5.0-py3-none-any.whl
- Upload date:
- Size: 45.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
140d1204ef31e290c77527f75f40d3d8df2f981b9281ba4f488ad90833a87f9e
|
|
| MD5 |
c5593ac4cc8739a06449b0cffe25ebc5
|
|
| BLAKE2b-256 |
6323e82c75a54f251984450323d5a26ef3532eeabcaa193ac7c201344267063b
|