Skip to main content

Fill and sync Google Calendars with events taken from a Google spreadsheet

Project description

Haunt monster

https://img.shields.io/pypi/v/haunts.svg

What it does

Fill Google Calendars with events taken from a Google Spreadsheet. Or the other way around.

How to install

pip install haunts

Prerequisites

To use Google Calendar and Google Spreasheet APIs you must generate a Google API application and download a credentials.json:

  • Run haunts --config. It will create the ~/.haunts folder and an haunts.ini file inside it.

  • Edit the haunts.ini file by setting the CONTROLLER_SHEET_DOCUMENT_ID

  • Go to https://console.cloud.google.com/home/dashboard and create a Project called haunts.

    • In the search bar, search Credentials APIs and services and enable it.

    • Click on Create Credentials, set Desktop as the type and save the json file as ~/.haunts/credentials.json.

    • In the search bar, search Google Sheets API and Google Calendar API and activate them.

  • Run haunts normally. It will ask you to authenticate to both the Google Sheets and the Google Calendar APIs (a browser should be automatically opened for you). This action will create the following files: ~/.haunts/calendars-token.json and ~/.haunts/sheets-token.json

How to use

Command line help is accessible using:

haunts --help

Usage by examples

To sync every available entry in a sheet named “May”:

haunts May

To limits sync to events on a limited set of days:

haunts --day=2021-05-24 --day=2021-05-25 --day=2021-05-28 May

To also limits sync to some projects (calendars):

haunts --day=2021-05-24 --day=2021-05-25 --day=2021-05-28 --project="Project X" May

To execute only on rows where a “delete” action is defined (see “Actions” below):

haunts --day=2021-05-24 --day=2021-05-25 --day=2021-05-28 --project="Project X" -a D May

To get the report instead of running calendar sync:

haunts --execute report --day=2021-05-24 --day=2021-05-25 --day=2021-05-28 --project="Project X" May

To just report overtime entries in the set:

haunts --execute report --day=2021-05-24 --day=2021-05-25 --day=2021-05-28 --project="Project X" --overtime May

To read today events from all configured calendar and write them on your “May” sheet for the current:

haunts --execute read May

To read events for a specific date from all configured calendar and write them on your “May” sheet for the current:

haunts --execute read -d 2023-05-15 May

How it works

What haunts does depends on the --execute parameter.

In its default configuration (if --execute is omitted, or equal to sync), the command will try to access a Google Spreatsheet you must have access to (write access required), specifically: it will read a single sheet at time inside that spreadsheet. Every row inside this sheet is an event that will be also created on a Google Calendar.

Alternatively you can provide:

  • --execute report.

    In this case it just access the Google Spreadsheet to collect data.

  • --execute read.

    In this case it fills the Google Spreadsheet for you, by reading you calendars.

Sheet definition

The referenced sheet must contains a set of columns. Headers names are important but orders matters not. Any additional columns will be ignored.

An example sheet is provided.

The partition in multiple sheets is designed to keep every month in a separate sheet, but this is not strictly checked.

Every sheet should contains following headers:

Date

(date)

The day where the event will be created. If the date is not found, the line will be treated as an empty line (so: skipped)

Start time

(time string in format HH:MM or empty) - optional column

If provided, the current event will start at given time. This will influence also events defined after this row

Spent

(number or empty)

How long the event will last. Leave empty to create a full-day event.

When executiing the report, full day event length is influences by OVERTIME_FROM configuration option

Project

(string)

Project name as it’s named in the config sheet (see below)

Activity

(string)

Summary of the event

Details

(string, optional)

Additional text for the event description

Event id

(string)

Leave this empty. It will be filled with the id of the generated event

Link

(text)

Leave this empty. It will be filled with a link to the event inside Google Calendar

Action

(chars)

See below. If empty: it will be filled with an I when an event is created from this row

Configuring projects

The spreadsheet must also contains a configuration sheet (default name is config, can be changed in the .ini) where you must put at least two columns (with same headers as follows):

id

The id of a Google Calendar associated to this project. You must have write access to this calendar.

name

The name of the project, like a human readable name for a calendar. A project name can be associated to the same calendar id multiple times (this way you can have aliases).

read_from (optional)

User only for --execute read.

Read events from this (optional) calendar id instead of the main one. This makes possible to read events from a calendar, but store them in another ones.

Values in the name column are valid values for the Project column introduced above.

How events will be filled

Let says you run something like this:

haunts --day=2021-07-08 July

haunts will access the sheet named July in the spreadsheet configured in the .ini file. Only rows where the Date filed will match the --day parameter will be considered (if this param is not provided: the full sheet content is analyzed).

For every rows that match, haunts will:

  • Generate a new event, starting from a default time (this can be configured in the .ini). The event will last for Spent hours

  • The next event will start where the previous ended

  • If the event will be successfully created, an “I” will be placed in the Action column. This will make future executions to ignore the line.

  • Other columns will be read or filled as described above.

Actions

Possible values you can find (or type yourself) in the Action column:

  • I

    ignore: execution will just ignore this line. This is commonly automatically filled by haunts itself, but you can add this value manually to ignore the line. Example: for events you already have on calendar but you want to track on the spreadsheet too.

  • II

    ignore all: same as I, but also ignore rows in the --execute=report mode

  • D

    delete: execution will clear Action, Event id and Link cells for this row, and delete the related event on the Google Calendar. As also Action is cleared, next execution will likely fill this line again. Use this as a poor-man-edit, to change something on the event.

When syncing a calendar (--execute=sync) you can use this column to filter on which rows execute sync by providing the --action option. For example:

haunts --action D July

This will sync only rows where the “Action” column contains the delete (D) value.

Reporting feature

Using haunts -e report <SHEET_NAME> will read the source Spreadsheet to collect statistical data.

Both -p and -d parameters are allowed.

The resulting table can be something like the following:

Date        Project      Total
----------  ---------  -------
2022-11-20  Calendar1        2
2022-11-20  Calendar2        1
2022-11-21  Calendar2        5
2022-11-21  Calendar3        3
2022-11-23  Calendar1       10
2022-11-24  Calendar1        8
2022-11-26  Calendar4        9
2022-11-27  Calendar4        8
2022-11-27  Calendar5        1
----------  ---------  -------
                            47

For every calendar and day found in the sheet, it report a total of hours spent.

Full day events are taken into account, and the overwork is also supported by configuring both OVERTIME_FROM (default is: no overwork support) and WORKING_HOURS (default is: 8).

If you want to report overtime, you can use the --overtime flag, and only overtime rows will counted.

TODO and known issues

  • rows in the sheet must be sorted ascending

  • haunts will not check for already filled time slots (yet?), so overlapping of events may happens

  • -e report is calculating values on Python side, you know… we have a more reliable spreadsheet there

  • -e report is counting overtime based on “Start time” column, while it’s probably better to read start dates from events

Why?!

In B-Open this is how we register our worklogs, participation to projects in multiple Google Calendars.

OK, but why “haunts”?!

An haunt is a monster from Dungeons&Dragons, which is translated in the italian version of the game as “Presenza”.

But “presenza” is the same term used in italian for “participation”, so how we call our worklogs.

And filling worklogs haunt us.

https://raw.githubusercontent.com/keul/haunts/main/docs/pm.gif

Roadmap

The following (ambitious) roadmap is based on the maturtiy level of the software, no timeline available yet.

  • Alpha

    Fill worklogs in my place

  • Beta

    Integration with GitHib Copilot, to write code for me

  • Production/Stable

    Integration with GTP-4, to reply to collegues on Slack in my place

  • Mature

    Profit

  • Inactive

    (I mean me… not the software)

Credits

Developers and contributors.

  • keul (main-worklogs-hater)

  • francesconazzaro (how-to-use-google-api-evangelist)

  • gcammarota (reporting-tool-guy)

History

0.7.1 (2024-04-13)

  • read event selection: if user is in invited list, add the event only if she/he accepted or not answered

  • read events: do not put event id (I action flag) when event cames from a linked calendar

0.7.0 (2024-04-09)

  • Added read option to --execute

0.6.0 (2023-03-31)

  • Added II action

0.5.0 (2022-12-04)

  • Renamed --action to --execute

  • new option:--action to filter by values on “Action” column

  • new option:--overtime to just report overtime amount

0.4.0 (2022-12-01)

  • Added -p parameter, to just act on specific project(s)

  • Added --action, and implemented report action (credits to @gcammarota)

  • More detailed logging when deleting events with action D

0.3.1 (2022-11-21)

  • bugfix: if a row uses an I action, everything there is ignored

  • When a project is not found: do not stop haunts but skip the line and report that when execution ends. Closes #14

  • Empty lines now supported. Closes #12

  • Human readable error message when the sheet is not found. Closes #11

0.3.0 (2022-05-02)

  • Fixed: START_TIME default was not used. Closes #4

  • New: new action: D

  • New: added “Start time” feature. Closes #7

  • Fix: reduces number of writes. Closes #6

  • Fix: do not fail badly when max number of requests per minutes is reached. See #1

  • New: added “–config” for initial env configuration, improved documentation

0.2.1 (2022-02-10)

  • Fixed full day criteria

0.2.0 (2021-07-29)

  • Added support for full-day event

0.1.0 (2021-07-10)

  • Initial release

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

haunts-0.7.1.tar.gz (176.1 kB view hashes)

Uploaded Source

Built Distribution

haunts-0.7.1-py2.py3-none-any.whl (20.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

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