Metadata-Version: 2.1
Name: sync-ics2gcal
Version: 0.1.1
Summary: Sync ics file with Google calendar
Home-page: https://github.com/b4tman/sync_ics2gcal
Author: Dmitry Belyaev
Author-email: b4tm4n@mail.ru
License: MIT
Description: # sync_ics2gcal
        
        [![PyPI version](https://badge.fury.io/py/sync-ics2gcal.svg)](https://badge.fury.io/py/sync-ics2gcal)
        [![Build Status](https://travis-ci.org/b4tman/sync_ics2gcal.svg?branch=master)](https://travis-ci.org/b4tman/sync_ics2gcal)
        [![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=b4tman/sync_ics2gcal)](https://dependabot.com)
        [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fb4tman%2Fsync_ics2gcal.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fb4tman%2Fsync_ics2gcal?ref=badge_shield)
        ![Python package status](https://github.com/b4tman/sync_ics2gcal/workflows/Python%20package/badge.svg)
        
        Python scripts for sync .ics file with Google calendar
        
        ## Installation
        
        To install from [PyPI](https://pypi.org/project/sync-ics2gcal/) with [pip](https://pypi.python.org/pypi/pip), run:
        
        ```
        pip install sync-ics2gcal
        ```
        
        
        Or download source code and install:
        
        ```
        python setup.py install
        ```
        
        ## Configuration
        
        ### Create application in Google API Console
        1. Create a new project: https://console.developers.google.com/project
        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
        For example: `/home/user/myfolder`.
        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:
        ```
        wget https://raw.githubusercontent.com/b4tman/sync_ics2gcal/develop/sample-config.yml -O config.yml
        ```
        3. *(Optional)* Place source `.ics` file, `my-calendar.ics` for example.
        
        ### Configuration parameters
        * `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
        * `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
        
        ```
        manage-ics2gcal <subcommand> [-h] [options]
        ```
        
        subcomands:
        * **list** - list calendars
        * **create** - create calendar
        * **add_owner** - add owner to calendar
        * **remove** - remove calendar
        * **rename** - rename calendar
        
        Use **-h** for more info.
        
        ### Sync calendar
        
        just type:
        ```
        sync-ics2gcal
        ```
        
        
        ## How it works
        
        ![How it works](how-it-works.png)
        
        
        ## License
        [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fb4tman%2Fsync_ics2gcal.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fb4tman%2Fsync_ics2gcal?ref=badge_large)
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
Description-Content-Type: text/markdown
