Metadata-Version: 2.1
Name: ical2vdir
Version: 0.1.0
Summary: convert .ics file to vdir directory
Home-page: https://github.com/fphammerle/ical2vdir
Author: Fabian Peter Hammerle
Author-email: fabian@hammerle.me
License: GPLv3+
Description: # ical2vdir
        
        Convert / split single [iCalendar](https://en.wikipedia.org/wiki/ICalendar)
        `.ics` file into a
        [vdir](https://vdirsyncer.readthedocs.io/en/stable/vdir.html) directory.
        
        Compatible with [khal](https://github.com/pimutils/khal).
        
        ## Setup
        
        ```sh
        $ sudo apt-get install python3-icalendar # optional
        $ pip3 install --user --upgrade ical2vdir
        ```
        
        ## Usage
        
        ```sh
        $ ical2vdir < input.ics --output-dir /some/path
        ```
        
        Or download `.ics` from [Google Calendar](https://calendar.google.com/):
        ```sh
        $ curl https://calendar.google.com/calendar/ical/someone%40gmail.com/private-1234/basic.ics \
            | pipenv run ical2vdir --output-dir output/
        ```
        
        Remove files from output directory that are not available in input:
        ```sh
        $ ical2vdir < input.ics --output-dir /some/path --delete
        ```
        
        ### Run Tests
        
        ```sh
        $ git clone https://github.com/fphammerle/ical2vdir.git
        $ cd ical2vdir
        $ pipenv sync --dev
        $ pipenv run pylint ical2vdir
        $ pipenv run mypy ical2vdir
        $ pipenv run pytest --cov=ical2vdir --cov-report=term-missing --cov-fail-under=100
        ```
        
Keywords: calendar,event,iCal,iCalendar,ics,split,sync,vdir
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
