sync_ics2gcal/README.md

104 lines
3.2 KiB
Markdown
Raw Permalink Normal View History

2018-04-05 08:16:20 +00:00
# sync_ics2gcal
2020-02-20 09:39:53 +00:00
[![PyPI version](https://badge.fury.io/py/sync-ics2gcal.svg)](https://badge.fury.io/py/sync-ics2gcal)
2019-09-04 08:13:02 +00:00
![Python package status](https://github.com/b4tman/sync_ics2gcal/workflows/Python%20package/badge.svg)
2023-08-20 20:03:27 +00:00
[![Documentation Status](https://readthedocs.org/projects/sync-ics2gcal/badge/?version=latest)](https://sync-ics2gcal.readthedocs.io/en/latest/?badge=latest)
2018-04-10 06:16:38 +00:00
2018-04-07 16:44:27 +00:00
Python scripts for sync .ics file with Google calendar
2018-04-21 12:23:48 +00:00
2020-02-20 09:39:53 +00:00
## Installation
To install from [PyPI](https://pypi.org/project/sync-ics2gcal/) with [pip](https://pypi.python.org/pypi/pip), run:
2020-03-08 10:17:54 +00:00
```sh
2020-02-20 09:39:53 +00:00
pip install sync-ics2gcal
```
2021-10-09 12:54:31 +00:00
Or download source code and install using poetry:
2020-02-20 09:39:53 +00:00
2020-03-08 10:17:54 +00:00
```sh
2021-10-09 12:54:31 +00:00
# install poetry
pip install poetry
# install project and deps to virtualenv
poetry install
# run
poetry run sync-ics2gcal
2020-02-20 09:39:53 +00:00
```
## Configuration
### Create application in Google API Console
2020-03-08 10:17:54 +00:00
1. Create a new project: [console.developers.google.com/project](https://console.developers.google.com/project)
2020-02-20 09:39:53 +00:00
2. Choose the new project from the top right project dropdown (only if another project is selected)
3. In the project Dashboard, choose "Library"
4. Find and Enable "Google Calendar API"
5. In the project Dashboard, choose "Credentials"
6. In the "Service Accounts" group, click to "Manage service accounts"
7. Click "Create service account"
8. Choose service account name and ID
9. Go back to "Service Accounts" group in "Credentials"
10. Edit service account and click "Create key", choose JSON and download key file.
### Create working directory
2020-03-08 10:17:54 +00:00
2020-02-20 09:39:53 +00:00
For example: `/home/user/myfolder`.
2020-03-08 10:17:54 +00:00
2020-02-20 09:39:53 +00:00
1. Save service account key in file `service-account.json`.
2. Download [sample config](https://github.com/b4tman/sync_ics2gcal/blob/develop/sample-config.yml) and save to file `config.yml`. For example:
2020-03-08 10:17:54 +00:00
```sh
2020-02-20 09:39:53 +00:00
wget https://raw.githubusercontent.com/b4tman/sync_ics2gcal/develop/sample-config.yml -O config.yml
```
2020-03-08 10:17:54 +00:00
2020-02-20 09:39:53 +00:00
3. *(Optional)* Place source `.ics` file, `my-calendar.ics` for example.
### Configuration parameters
2020-03-08 10:17:54 +00:00
2020-02-20 09:39:53 +00:00
* `start_from` - start date:
* full format datetime, `2018-04-03T13:23:25.000001Z` for example
* or just `now`
* *(Optional)* `service_account` - service account filename, remove it from config to use [default credentials](https://developers.google.com/identity/protocols/application-default-credentials)
* *(Optional)* `logging` - [config](https://docs.python.org/3.8/library/logging.config.html#dictionary-schema-details) to setup logging
2020-02-20 09:39:53 +00:00
* `google_id` - target google calendar id, `my-calendar@group.calendar.google.com` for example
* `source` - source `.ics` filename, `my-calendar.ics` for example
## Usage
### Manage calendars
2020-03-08 10:17:54 +00:00
```sh
2021-05-01 14:58:30 +00:00
manage-ics2gcal GROUP | COMMAND
2020-02-20 09:39:53 +00:00
```
2021-05-01 14:58:30 +00:00
**GROUPS**:
* **property** - get/set properties (see [CalendarList resource](https://developers.google.com/calendar/v3/reference/calendarList#resource)), subcommands:
- **get** - get calendar property
- **set** - set calendar property
**COMMANDS**:
2020-03-08 10:17:54 +00:00
2020-02-20 09:39:53 +00:00
* **list** - list calendars
* **create** - create calendar
* **add_owner** - add owner to calendar
* **remove** - remove calendar
* **rename** - rename calendar
2021-05-01 14:58:30 +00:00
2020-02-20 09:39:53 +00:00
Use **-h** for more info.
### Sync calendar
just type:
2020-03-08 10:17:54 +00:00
```sh
2020-02-20 09:39:53 +00:00
sync-ics2gcal
```
2018-04-21 12:23:48 +00:00
## How it works
![How it works](how-it-works.png)
2023-08-20 20:03:27 +00:00
Documentation is available at [sync-ics2gcal.readthedocs.io](https://sync-ics2gcal.readthedocs.io).