i3-agenda


Namei3-agenda JSON
Version 1.8 PyPI version JSON
download
home_page
SummaryShow your next google calendar event in polybar or i3-bar
upload_time2023-11-05 20:46:24
maintainer
docs_urlNone
author
requires_python>=3.3
licenseUnlicense
keywords
VCS
bugtrack_url
requirements python-bidi google-api-python-client google-auth-httplib2 google-auth-oauthlib aiohttp typing_extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![AUR version](https://img.shields.io/aur/version/i3-agenda?style=flat-square&logo=arch-linux)](https://aur.archlinux.org/packages/i3-agenda/)
[![PyPI](https://img.shields.io/pypi/v/i3-agenda?style=flat-square&logo=python)](https://pypi.org/project/i3-agenda/) <a href="https://github.com/rosenpin/i3-agenda/releases"><img src="https://img.shields.io/github/commits-since/rosenpin/i3-agenda/latest.svg?color=green" alt="Version Badge"></a>
<a target="_blank" href="https://www.paypal.com/donate/?hosted_button_id=9M8LL9GJXELBN" title="Donate using PayPal"><img src="https://img.shields.io/badge/paypal-donate-yellow.svg" /></a>

# What is this?
It's a script that communicates with Google's calendar API, it will go through your calendars and print the next calendar event details.\
You can take this output and show it on your i3-bar or polybar

![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/screenshot.png)
![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/mac_screenshot.png)

## How does it work
It will read your next 10 events from each of your calendars, then go through them all and figure out which one is closest.\
It will print the time and title of the closest event.

# Setup

## Google API

https://developers.google.com/calendar/quickstart/python

1. You need to create a Google API project and download your OAuth 2.0
   credentials json file.You first need to create a project [here][cred], then
   add Google Calendar support, then download the credentials.json file.
   **Alternatively, you can just use [this link][python] and click "Enable the
   Google Calendar API". This will create a project, add Google Calendar
   support, and let you download the file in 1 click**. If you're having
   trouble, you can use this tutorial for more information
   [https://developers.google.com/calendar/auth][auth]. Another great guide can
   be found here if you're still having trouble:
   [https://github.com/jay0lee/GAM/wiki/CreatingClientSecretsFile][secret].
2. Download the credentials file to somewhere on your computer.
3. Proceed to installation phase.

## Installation
After downloading the credentials file, install the package.

### Pipx

Using [`pipx`][pipx] will save you time and it's cross-platform. It is a
package manager for Python that allows you to easily install and run Python
packages in isolated environments.

```bash
pipx install https://github.com/rosenpin/i3-agenda
```

### Pip

1. `sudo pip install .`
2. Try running `i3-agenda -c $CREDENTIALS_FILE_PATH` with "$CREDENTIALS_FILE_PATH" replaced with the path to the credentials.json file you downloaded in the previous step.
3. Add configuration to your bar (examples in the Examples section below).

### Arch Linux (AUR)
1. `yay -S i3-agenda-git`
2. Try running `i3-agenda -c $CREDENTIALS_FILE_PATH` with "$CREDENTIALS_FILE_PATH" replaced with the path to the credentials.json file you downloaded in the previous step.
3. Add configuration to your bar (examples in the Examples section below).

### Manual
#### Dependencies
You need to install some python libraries first.\
Make sure python3 is your default python.\
Run `sudo pip3 install python-bidi google-api-python-client google-auth-httplib2 google-auth-oauthlib`

1. Clone the repo to a local directory `cd ~/ && git clone https://github.com/rosenpin/i3-agenda && cd i3-agenda`
3. Run the script `python3 i3_agenda/i3_agenda.py -c $CREDENTIALS_FILE_PATH` with "$CREDENTIALS_FILE_PATH" replaced with the path to the credentials.json file you downloaded in the previous step. If configured correctly, it will prompt you to log in in your browser, accept everything. It should print your next event.
4. Optional: you can run `sudo python setup.py install` to add the script to your path so you can run `i3-agenda` anywhere.
5. Add configuration to your bar (examples in the Examples section below).

# Usage
```
  -h, --help            show this help message and exit
  --credentials CREDENTIALS, -c CREDENTIALS
                        path to your credentials.json file
  --conf CONF, -cd CONF
                        path to the i3agenda configuration and cache folder
  --cachettl CACHETTL, -ttl CACHETTL
                        time for cache to be kept in minutes
  --update, -u          when using this flag it will not load previous results from cache, it will however save new results to cache.
                        You can use this flag to refresh all the cache forcefully
  --ids IDS [IDS ...], -i IDS [IDS ...]
                        list of calendar ids to fetch, space separated. If  none is specified all calendars will be fetched
  --maxres MAXRES, -r MAXRES
                        max number of events to query Google's API for each of your calendars.
                        Increase this number if you have lot of events in your google calendar
  --today, -d           print only today events
  --no-event-text TEXT  text to display when there are no events
  --hide-event-after HIDE_EVENT_AFTER
                        minutes to show events after they start before showing the next event.
                        If not specified, the current event will be shown until it ends
  --show-event-before SHOW_EVENT_BEFORE
                        minutes to show events before they start. If not specified, the next event will be shown regardless of when it starts
  --date-format DATE_FORMAT
                        the date format like %d/%m/%y. Default is %d/%m
  --limchar LIMCHAR, -l LIMCHAR
                        the max characters that the displayed event can contain
  --skip SKIP, -s SKIP  the number of events to skip from the most recent
```

### Filter displayed calendars
To display events only from certain calendars use the `--ids` parameter and pass a list of calendar id, space separated.\
To obtain the calendar id you can check the settings page of the calendar on Google (usually is the owner email, if it's not shared).\
Leaving the list empty will fetch all calendars (default behavior).

## Notes
### Known issues
It might not work properly if you have more than 10 all day events, this can be fixed by increasing the maxResults variable.

### RTL support
If you use RTL or some of your events contain RTL languages, you will need to pipe [pybidi](https://pypi.org/project/python-bidi/) with the script. Example:
`i3-agenda -c ~/.google_credentials.json -ttl 60 | pybidi`

### Caching
It uses a caching mechanism so you won't have to contact Google servers every minute, to set the cache TTL use the -ttl flag.\
Example: `i3-agenda --ttl 60` to set the TTL to 60 (meaning it will contact Google again every hour).\
This means that if you create a new event, it might take an hour for the script to recognize it.

### Multi account support
Multi account support is not officialy supported, but you can use the workaround from this issue: https://github.com/rosenpin/i3-agenda/issues/35#issuecomment-923976482

## Examples
### Example [polybar](https://github.com/polybar/polybar) configuration:
![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/screenshot.png)
``` ini
modules-center = agenda
....
[module/agenda]
type = custom/script
; Show the next event and forget cache automatically every 60 minutes
exec = i3-agenda -c ~/.google_credentials.json -ttl 60
; left click to launch Google Calendar
click-left = chromium https://calendar.google.com/calendar/r/day
; right click force update the cache, if for example you just added a new event
click-right = notify-send "syncing..." && i3-agenda -c ~/.google_credentials.json --update && notify-send -t 2000 "sync finished"
interval = 60
```

### Example [SwiftBar](https://github.com/swiftbar/SwiftBar) configuration
![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/mac_screenshot.png)
This will show your next event as the menu bar title, when you press it you will see a dropdown with all your today events
You can call the file `agenda.2m.sh` to make it refresh every 2 minutes
``` bash
#!/bin/bash
# <swiftbar.hideAbout>true</swiftbar.hideAbout>

i3-agenda -c ~/.google_credentials.json -ttl 60 --limchar 30

echo "---"
href="href='https://calendar.google.com/calendar/u/0/r/'"

i=1
while :; do
    event=$(i3-agenda -c ~/.google_credentials.json -ttl 60 --limchar 30 --skip $i --today)
    ((i++))
    if [[ "$event" == "No events" ]];then
        exit 0
    fi
    echo "$event | $href"
done
```

### Example i3block configuration:
```ini
[i3-agenda]
command=i3-agenda -c ~/.google_credentials.json -ttl 60
interval=60
```


Example output of the script:\
```10:55 Grocery shopping```

### How to use the `skip` flag to scroll events

Edit the polybar configuration creating two modules:

```ini
[module/agenda-ipc]
type = custom/ipc

hook-0 = i3-agenda -c ~/.google_credentials.json --skip $(cat ~/.config/i3-agenda/i3-agenda-skip.tmp || echo 0)
hook-1 = ~/.config/polybar/scripts/i3agenda-onscroll.sh down && i3-agenda -c ~/.google_credentials.json --skip $(cat ~/.config/i3-agenda/i3-agenda-skip.tmp || echo 0)
hook-2 = ~/.config/polybar/scripts/i3agenda-onscroll.sh up && i3-agenda -c ~/.google_credentials.json --skip $(cat ~/.config/i3-agenda/i3-agenda-skip.tmp || echo 0)

format = %{F#61afef}%{F-} <output>

; left click to launch Google Calendar
click-left = firefox https://calendar.google.com/calendar/u/0/r
; right click force update the cache, if for example you just added a new event
click-right = rm ~/.config/i3-agenda/i3-agenda-skip.tmp; i3-agenda -c ~/.config/i3-agenda/client_secret.json --update && notify-send "i3-agenda" "Sync completed"

; show the previous event
scroll-down = polybar-msg hook agenda-ipc 2
; show the next event
scroll-up = polybar-msg hook agenda-ipc 3

[module/agenda]
type = custom/script
interval = 900
exec = polybar-msg hook agenda-ipc 1
label =
```

Add both modules to the bar, for example:

```ini
modules-center = agenda agenda-ipc
```

In the polybar scripts folder add the file `i3agenda-onscroll.sh`:

```bash
#!/usr/bin/env bash
if [ -n "${1}" ]; then
  file=~/.config/i3-agenda/i3-agenda-skip.tmp
  typeset -i skip=$(cat $file || echo 0)
  if [[ "${1}" == "up" ]]; then
    skip+=1
  elif [[ "${1}" == "down" && $skip -gt 0 ]]; then
    skip=$(( skip - 1))
  fi
  echo $skip > $file
fi
```


[pipx]: https://pypa.github.io/pipx/installation/
[cred]: https://console.developers.google.com/apis/credentials
[python]: https://developers.google.com/calendar/quickstart/python
[auth]: https://developers.google.com/calendar/auth
[secret]: https://github.com/jay0lee/GAM/wiki/CreatingClientSecretsFile

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "i3-agenda",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.3",
    "maintainer_email": "",
    "keywords": "",
    "author": "",
    "author_email": "Tomer Rosenfeld <mail@tomerrosenfeld.com>",
    "download_url": "https://files.pythonhosted.org/packages/d8/59/d8b0f3f3c7126562b8c649e52adf725db7202f09f6a564f676682f356c24/i3-agenda-1.8.tar.gz",
    "platform": null,
    "description": "[![AUR version](https://img.shields.io/aur/version/i3-agenda?style=flat-square&logo=arch-linux)](https://aur.archlinux.org/packages/i3-agenda/)\n[![PyPI](https://img.shields.io/pypi/v/i3-agenda?style=flat-square&logo=python)](https://pypi.org/project/i3-agenda/) <a href=\"https://github.com/rosenpin/i3-agenda/releases\"><img src=\"https://img.shields.io/github/commits-since/rosenpin/i3-agenda/latest.svg?color=green\" alt=\"Version Badge\"></a>\n<a target=\"_blank\" href=\"https://www.paypal.com/donate/?hosted_button_id=9M8LL9GJXELBN\" title=\"Donate using PayPal\"><img src=\"https://img.shields.io/badge/paypal-donate-yellow.svg\" /></a>\n\n# What is this?\nIt's a script that communicates with Google's calendar API, it will go through your calendars and print the next calendar event details.\\\nYou can take this output and show it on your i3-bar or polybar\n\n![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/screenshot.png)\n![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/mac_screenshot.png)\n\n## How does it work\nIt will read your next 10 events from each of your calendars, then go through them all and figure out which one is closest.\\\nIt will print the time and title of the closest event.\n\n# Setup\n\n## Google API\n\nhttps://developers.google.com/calendar/quickstart/python\n\n1. You need to create a Google API project and download your OAuth 2.0\n   credentials json file.You first need to create a project [here][cred], then\n   add Google Calendar support, then download the credentials.json file.\n   **Alternatively, you can just use [this link][python] and click \"Enable the\n   Google Calendar API\". This will create a project, add Google Calendar\n   support, and let you download the file in 1 click**. If you're having\n   trouble, you can use this tutorial for more information\n   [https://developers.google.com/calendar/auth][auth]. Another great guide can\n   be found here if you're still having trouble:\n   [https://github.com/jay0lee/GAM/wiki/CreatingClientSecretsFile][secret].\n2. Download the credentials file to somewhere on your computer.\n3. Proceed to installation phase.\n\n## Installation\nAfter downloading the credentials file, install the package.\n\n### Pipx\n\nUsing [`pipx`][pipx] will save you time and it's cross-platform. It is a\npackage manager for Python that allows you to easily install and run Python\npackages in isolated environments.\n\n```bash\npipx install https://github.com/rosenpin/i3-agenda\n```\n\n### Pip\n\n1. `sudo pip install .`\n2. Try running `i3-agenda -c $CREDENTIALS_FILE_PATH` with \"$CREDENTIALS_FILE_PATH\" replaced with the path to the credentials.json file you downloaded in the previous step.\n3. Add configuration to your bar (examples in the Examples section below).\n\n### Arch Linux (AUR)\n1. `yay -S i3-agenda-git`\n2. Try running `i3-agenda -c $CREDENTIALS_FILE_PATH` with \"$CREDENTIALS_FILE_PATH\" replaced with the path to the credentials.json file you downloaded in the previous step.\n3. Add configuration to your bar (examples in the Examples section below).\n\n### Manual\n#### Dependencies\nYou need to install some python libraries first.\\\nMake sure python3 is your default python.\\\nRun `sudo pip3 install python-bidi google-api-python-client google-auth-httplib2 google-auth-oauthlib`\n\n1. Clone the repo to a local directory `cd ~/ && git clone https://github.com/rosenpin/i3-agenda && cd i3-agenda`\n3. Run the script `python3 i3_agenda/i3_agenda.py -c $CREDENTIALS_FILE_PATH` with \"$CREDENTIALS_FILE_PATH\" replaced with the path to the credentials.json file you downloaded in the previous step. If configured correctly, it will prompt you to log in in your browser, accept everything. It should print your next event.\n4. Optional: you can run `sudo python setup.py install` to add the script to your path so you can run `i3-agenda` anywhere.\n5. Add configuration to your bar (examples in the Examples section below).\n\n# Usage\n```\n  -h, --help            show this help message and exit\n  --credentials CREDENTIALS, -c CREDENTIALS\n                        path to your credentials.json file\n  --conf CONF, -cd CONF\n                        path to the i3agenda configuration and cache folder\n  --cachettl CACHETTL, -ttl CACHETTL\n                        time for cache to be kept in minutes\n  --update, -u          when using this flag it will not load previous results from cache, it will however save new results to cache.\n                        You can use this flag to refresh all the cache forcefully\n  --ids IDS [IDS ...], -i IDS [IDS ...]\n                        list of calendar ids to fetch, space separated. If  none is specified all calendars will be fetched\n  --maxres MAXRES, -r MAXRES\n                        max number of events to query Google's API for each of your calendars.\n                        Increase this number if you have lot of events in your google calendar\n  --today, -d           print only today events\n  --no-event-text TEXT  text to display when there are no events\n  --hide-event-after HIDE_EVENT_AFTER\n                        minutes to show events after they start before showing the next event.\n                        If not specified, the current event will be shown until it ends\n  --show-event-before SHOW_EVENT_BEFORE\n                        minutes to show events before they start. If not specified, the next event will be shown regardless of when it starts\n  --date-format DATE_FORMAT\n                        the date format like %d/%m/%y. Default is %d/%m\n  --limchar LIMCHAR, -l LIMCHAR\n                        the max characters that the displayed event can contain\n  --skip SKIP, -s SKIP  the number of events to skip from the most recent\n```\n\n### Filter displayed calendars\nTo display events only from certain calendars use the `--ids` parameter and pass a list of calendar id, space separated.\\\nTo obtain the calendar id you can check the settings page of the calendar on Google (usually is the owner email, if it's not shared).\\\nLeaving the list empty will fetch all calendars (default behavior).\n\n## Notes\n### Known issues\nIt might not work properly if you have more than 10 all day events, this can be fixed by increasing the maxResults variable.\n\n### RTL support\nIf you use RTL or some of your events contain RTL languages, you will need to pipe [pybidi](https://pypi.org/project/python-bidi/) with the script. Example:\n`i3-agenda -c ~/.google_credentials.json -ttl 60 | pybidi`\n\n### Caching\nIt uses a caching mechanism so you won't have to contact Google servers every minute, to set the cache TTL use the -ttl flag.\\\nExample: `i3-agenda --ttl 60` to set the TTL to 60 (meaning it will contact Google again every hour).\\\nThis means that if you create a new event, it might take an hour for the script to recognize it.\n\n### Multi account support\nMulti account support is not officialy supported, but you can use the workaround from this issue: https://github.com/rosenpin/i3-agenda/issues/35#issuecomment-923976482\n\n## Examples\n### Example [polybar](https://github.com/polybar/polybar) configuration:\n![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/screenshot.png)\n``` ini\nmodules-center = agenda\n....\n[module/agenda]\ntype = custom/script\n; Show the next event and forget cache automatically every 60 minutes\nexec = i3-agenda -c ~/.google_credentials.json -ttl 60\n; left click to launch Google Calendar\nclick-left = chromium https://calendar.google.com/calendar/r/day\n; right click force update the cache, if for example you just added a new event\nclick-right = notify-send \"syncing...\" && i3-agenda -c ~/.google_credentials.json --update && notify-send -t 2000 \"sync finished\"\ninterval = 60\n```\n\n### Example [SwiftBar](https://github.com/swiftbar/SwiftBar) configuration\n![example](https://raw.githubusercontent.com/rosenpin/i3-agenda/master/art/mac_screenshot.png)\nThis will show your next event as the menu bar title, when you press it you will see a dropdown with all your today events\nYou can call the file `agenda.2m.sh` to make it refresh every 2 minutes\n``` bash\n#!/bin/bash\n# <swiftbar.hideAbout>true</swiftbar.hideAbout>\n\ni3-agenda -c ~/.google_credentials.json -ttl 60 --limchar 30\n\necho \"---\"\nhref=\"href='https://calendar.google.com/calendar/u/0/r/'\"\n\ni=1\nwhile :; do\n    event=$(i3-agenda -c ~/.google_credentials.json -ttl 60 --limchar 30 --skip $i --today)\n    ((i++))\n    if [[ \"$event\" == \"No events\" ]];then\n        exit 0\n    fi\n    echo \"$event | $href\"\ndone\n```\n\n### Example i3block configuration:\n```ini\n[i3-agenda]\ncommand=i3-agenda -c ~/.google_credentials.json -ttl 60\ninterval=60\n```\n\n\nExample output of the script:\\\n```10:55 Grocery shopping```\n\n### How to use the `skip` flag to scroll events\n\nEdit the polybar configuration creating two modules:\n\n```ini\n[module/agenda-ipc]\ntype = custom/ipc\n\nhook-0 = i3-agenda -c ~/.google_credentials.json --skip $(cat ~/.config/i3-agenda/i3-agenda-skip.tmp || echo 0)\nhook-1 = ~/.config/polybar/scripts/i3agenda-onscroll.sh down && i3-agenda -c ~/.google_credentials.json --skip $(cat ~/.config/i3-agenda/i3-agenda-skip.tmp || echo 0)\nhook-2 = ~/.config/polybar/scripts/i3agenda-onscroll.sh up && i3-agenda -c ~/.google_credentials.json --skip $(cat ~/.config/i3-agenda/i3-agenda-skip.tmp || echo 0)\n\nformat = %{F#61afef}\uf073%{F-} <output>\n\n; left click to launch Google Calendar\nclick-left = firefox https://calendar.google.com/calendar/u/0/r\n; right click force update the cache, if for example you just added a new event\nclick-right = rm ~/.config/i3-agenda/i3-agenda-skip.tmp; i3-agenda -c ~/.config/i3-agenda/client_secret.json --update && notify-send \"i3-agenda\" \"Sync completed\"\n\n; show the previous event\nscroll-down = polybar-msg hook agenda-ipc 2\n; show the next event\nscroll-up = polybar-msg hook agenda-ipc 3\n\n[module/agenda]\ntype = custom/script\ninterval = 900\nexec = polybar-msg hook agenda-ipc 1\nlabel =\n```\n\nAdd both modules to the bar, for example:\n\n```ini\nmodules-center = agenda agenda-ipc\n```\n\nIn the polybar scripts folder add the file `i3agenda-onscroll.sh`:\n\n```bash\n#!/usr/bin/env bash\nif [ -n \"${1}\" ]; then\n  file=~/.config/i3-agenda/i3-agenda-skip.tmp\n  typeset -i skip=$(cat $file || echo 0)\n  if [[ \"${1}\" == \"up\" ]]; then\n    skip+=1\n  elif [[ \"${1}\" == \"down\" && $skip -gt 0 ]]; then\n    skip=$(( skip - 1))\n  fi\n  echo $skip > $file\nfi\n```\n\n\n[pipx]: https://pypa.github.io/pipx/installation/\n[cred]: https://console.developers.google.com/apis/credentials\n[python]: https://developers.google.com/calendar/quickstart/python\n[auth]: https://developers.google.com/calendar/auth\n[secret]: https://github.com/jay0lee/GAM/wiki/CreatingClientSecretsFile\n",
    "bugtrack_url": null,
    "license": "Unlicense",
    "summary": "Show your next google calendar event in polybar or i3-bar",
    "version": "1.8",
    "project_urls": {
        "Download": "https://github.com/rosenpin/i3-agenda/archive/1.8.tar.gz"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a4dd9ab79cc527bf08cdd55690a0f1f6fe94f9b5e7fdcb1525721fb8a7b9355",
                "md5": "3e226c19b6550359f29b87d9ab821b08",
                "sha256": "22414034dfe540fbd8d80d9455ee875a7b3a8817b55c877de27173bb66d7c421"
            },
            "downloads": -1,
            "filename": "i3_agenda-1.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3e226c19b6550359f29b87d9ab821b08",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.3",
            "size": 14307,
            "upload_time": "2023-11-05T20:46:23",
            "upload_time_iso_8601": "2023-11-05T20:46:23.442320Z",
            "url": "https://files.pythonhosted.org/packages/6a/4d/d9ab79cc527bf08cdd55690a0f1f6fe94f9b5e7fdcb1525721fb8a7b9355/i3_agenda-1.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d859d8b0f3f3c7126562b8c649e52adf725db7202f09f6a564f676682f356c24",
                "md5": "8e5385f0695565cdb32c398972492bfe",
                "sha256": "51a569a5fe5e57100e35f73b74e79599164c01deb379d0b3ccdda2c4029d8117"
            },
            "downloads": -1,
            "filename": "i3-agenda-1.8.tar.gz",
            "has_sig": false,
            "md5_digest": "8e5385f0695565cdb32c398972492bfe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.3",
            "size": 17577,
            "upload_time": "2023-11-05T20:46:24",
            "upload_time_iso_8601": "2023-11-05T20:46:24.719874Z",
            "url": "https://files.pythonhosted.org/packages/d8/59/d8b0f3f3c7126562b8c649e52adf725db7202f09f6a564f676682f356c24/i3-agenda-1.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-05 20:46:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "rosenpin",
    "github_project": "i3-agenda",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "python-bidi",
            "specs": [
                [
                    ">=",
                    "0.4"
                ]
            ]
        },
        {
            "name": "google-api-python-client",
            "specs": [
                [
                    ">=",
                    "2.66"
                ]
            ]
        },
        {
            "name": "google-auth-httplib2",
            "specs": [
                [
                    ">=",
                    "0.1."
                ]
            ]
        },
        {
            "name": "google-auth-oauthlib",
            "specs": [
                [
                    ">=",
                    "0.7"
                ]
            ]
        },
        {
            "name": "aiohttp",
            "specs": [
                [
                    ">=",
                    "3.8"
                ]
            ]
        },
        {
            "name": "typing_extensions",
            "specs": [
                [
                    ">=",
                    "4.7.1"
                ]
            ]
        }
    ],
    "lcname": "i3-agenda"
}
        
Elapsed time: 0.26682s