Metadata-Version: 2.1
Name: get_cemeb_cal
Version: 0.1.4
Summary: Get calendar from CeMEB
Author-email: Robert Wolff <mahlzahn@posteo.de>
License: GNU General Public License v3 or later (GPLv3+)
Project-URL: Source, https://codeberg.org/mahlzahn/get_cemeb_cal
Project-URL: Issues, https://codeberg.org/mahlzahn/get_cemeb_cal/issues
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: COPYING
Requires-Dist: beautifulsoup4
Requires-Dist: icalendar
Requires-Dist: lxml
Requires-Dist: requests
Provides-Extra: full
Requires-Dist: argcomplete; extra == "full"

# get_cemeb_cal – Get calendar from CeMEB
[![PyPI Version](https://img.shields.io/pypi/v/get_cemeb_cal?color=00aa00)](https://pypi.org/project/get_cemeb_cal)
[![PyPI License](https://img.shields.io/pypi/l/get_cemeb_cal)](COPYING)

## Installation from PyPI
```sh
pip install get_cemeb_cal
```

## Installation from source code
```sh
pip install .
```

## Usage as standalone program
```sh
get_cemeb_cal -h
```

## Automated local calendar update
Given a local calendar file obtained by e.g.,
```sh
get_cemeb_cal -o ~/.cemeb.ics -f 01/01/2024
```
a possible cron job can be added using `crontab -e` with
```crontab
# M  H  d  m    W  /path/command
  0  8  *  *  1-5  python -m get_cemeb_cal -i ~/.cemeb.ics -o ~/.cemeb.ics
```
which will update the calendar every week day at 8 o’clock.

## Usage as python module
Currently not implemented

## Copyright
Copyright 2024 Robert Wolff <mahlzahn@posteo.de>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
